0

我得到了一个代码片段,它将回显特定页面的内容,

$id = 123;
$post = get_page($id);
$content = apply_filters('the_content', $post->post_content);
echo $content;

如何插入指定页面的 h1 标题标签?

4

2 回答 2

0

我不确定我是否理解你的问题。如果您希望在 h1 标签中显示帖子标题,请尝试以下操作:

<?php
$id=123;
$post = get_page($id);
echo '<h1>' . $post->post_title . '</h1>
?>
于 2012-08-22T11:21:18.270 回答
0
<?php
   echo '<pre>';
   $page_id = 107;
   $page_data = get_page( $page_id );
   echo '<h3>'. $page_data->post_title .'</h3>';
   echo apply_filters('the_content', $page_data->post_content); 
 ?>
于 2013-09-21T08:27:47.420 回答