Enclose title within a div?

时间:2012-11-26 作者:speedypancake

我正在使用此代码在首页中显示一个页面。我想学习如何添加div/间隔符来隔离页面标题。。。如果我试图在php代码中添加div类,那么它会抛出错误。

Question: How can I add a div to the title within this bit of code?

<div class="frontpage">
<?php 
$page_id = 2945; 
$page_data = get_page( $page_id ); 
echo \'<h3>\'. $page_data->post_title .\'</h3>\'; //enclose the title within a div/spacer???
echo apply_filters(\'the_content\', $page_data->post_content);
?>

谢谢

1 个回复
最合适的回答,由SO网友:Sebastian 整理而成

尝试更改标题

echo \'<h3>\'. $page_data->post_title .\'</h3>\';
喜欢

echo \'<div class="class-name">\'. $page_data->post_title .\'</div>\';

结束