Wordpress过滤器摘录标签

时间:2014-08-13 08:49:30

标签: wordpress-theming wordpress

嗨我在这里是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;
?>

有人知道摘录功能如何只显示特定标签内的文字吗?提前谢谢!

1 个答案:

答案 0 :(得分:1)

页面(帖子类型the_excerpt())的

page已在Wordpress 3.1中删除

如果需要,您必须使用wp_trim_words创建手册摘录