我在这个网站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 & Deliverance Service), 7 - 10pm
<strong>New York Weekly Schedule:</strong>
Sunday Explosive Service 10am - 12:15pm
Wednesday Bible Study, 7 - 8:30pm
Friday Freedom Night (Prayer, Prophetic, Miracle & Deliverance Service), 7 - 10pm
正如你所看到的那样,我已经给了两个带标签的标题。但是当它在主页上显示时,源显示了ecode但没有显示为粗体。有人请帮助我!!谢谢!
答案 0 :(得分:3)
我已按照提及的方式审核了您的网站,并跟踪了您的css文件。在reset.css中,你提到了font-weight:inherit for strong tag。
因此它尝试从其父元素继承此属性。
答案 1 :(得分:2)
将以下CSS添加到您的代码中
强{font-weight:bold; }
它会起作用