如何在Wordpress摘录中限制URL或链接显示

时间:2014-07-14 04:49:26

标签: wordpress post

您好我创建了代码以显示我的wordpress主题中的摘录但是当我把帖子中的网址显示在我的摘录中时这是我的代码

<div class="standard-excerpt">
    <?php
        $content = get_the_content();
        $trimmed_content = wp_trim_words( $content, 200 );
        echo $trimmed_content;
    ?>
        <a class="text-info" href="<?php the_permalink(); ?>">
            <?php _e('[Continue Reading]', 'Yallanpe Theme'); ?>
        </a>
</div>

我如何限制网址或链接直到不在我的摘录中显示它们? 我可以通过preg_match_all执行此操作吗?或没有?如果我能怎样才能做到这一点? 请我修改$trimmed_content直到我的摘录中没有显示我的网址和链接。

1 个答案:

答案 0 :(得分:0)

我认为你正在寻找PHP函数strip_tags。试试这个:

<div class="standard-excerpt">
    <?php
        $content = strip_tags( get_the_content() );
        $trimmed_content = wp_trim_words( $content , 200 );
        echo $trimmed_content;
    ?>
        <a class="text-info" href="<?php the_permalink(); ?>">
            <?php _e('[Continue Reading]', 'Yallanpe Theme'); ?>
        </a>
</div>

注意:这不会删除<a>标记之间的字词,只是阻止它们被点击