Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 WordPress 博客的主页上,我想提取包含在<h3>帖子中的标签中的标题,并且只显示标题下的标题。
<h3>
我一直在设置the_content();一个变量并尝试使用 preg_match_all 来提取标签和文本,但它似乎不起作用。它只显示标题,下面没有内容。
the_content();
这是最好的方法还是有更简单的方法。谢谢。
用于 get_the_content();将值作为字符串返回,而不是作为回显。
get_the_content();