嗨我在这里是wordpress的新手,我想在我的页面中使用the_excerpt函数显示摘录,只显示p标签内的所有文本内容,而不在h1和amp;中显示这些内容。 em标签。
这就是我的wordpress页面内容的样子:
<h1>Lorem ipsum dolor sit amet</h1>
<em>Aug. 12, 2014</em>
<p>Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>
这是我展示摘录的方式:
<?php
$args=array('post_type' => 'page','post_parent' => '41','posts_per_page' => 1);
$my_query = new WP_Query($args);
while ($my_query->have_posts()) : $my_query->the_post();
the_excerpt();
endwhile;
?>
有人知道摘录功能如何只显示特定标签内的文字吗?提前谢谢!