在wordpress中使用page-id调用时不显示样式

时间:2014-06-03 09:38:40

标签: php html css wordpress

我在这个网站My Site工作。在主页中,我使用以下代码调用了页面的内容

<?php 
$id=48; 
$post = get_post($id); 
$content = apply_filters('the_content', $post->post_content); 
echo $content;  
?>

我的内容是

<strong>Atlanta Weekly Schedule:</strong>

Sunday Explosive Service 10am - 12:15pm

Wednesday Bible Study, 7 - 8:30pm

Friday Freedom Night (Prayer, Prophetic, Miracle &amp; Deliverance Service), 7 - 10pm

&nbsp;

&nbsp;

<strong>New York Weekly Schedule:</strong>

Sunday Explosive Service 10am - 12:15pm

Wednesday Bible Study, 7 - 8:30pm

Friday Freedom Night (Prayer, Prophetic, Miracle &amp; Deliverance Service), 7 - 10pm

正如你所看到的那样,我已经给了两个带标签的标题。但是当它在主页上显示时,源显示了ecode但没有显示为粗体。有人请帮助我!!谢谢!

2 个答案:

答案 0 :(得分:3)

我已按照提及的方式审核了您的网站,并跟踪了您的css文件。在reset.css中,你提到了font-weight:inherit for strong tag。

因此它尝试从其父元素继承此属性。

有关详细信息,请访问:http://www.w3schools.com/cssref/css_inherit.asp

答案 1 :(得分:2)

将以下CSS添加到您的代码中

强{font-weight:bold; }

它会起作用