我可以将同一行放入Wordpress的__tent中吗?

时间:2015-08-07 05:58:10

标签: php wordpress include

我想在我的所有Wordpress文章中添加相同的文字行。

问题是我不希望文章的开头或结尾有同样的文字。相反,我想要它可能在第二段之后?

我可以将一些php include放入我所有Wordpress文章的内容中,并让它出现在所有文章的同一个地方吗?

1 个答案:

答案 0 :(得分:0)

您可以在文章中添加更多阅读内容,以便显示更多链接。

在你的文章中,在第二段之后添加

<!--more-->

Customizing the Read More

或者,您可以使用

修剪内容输出的单词数量
wp_trim_words();

wp_trim_words()

修改

如果要自定义the_content()的输出,则可以使用过滤器修改该功能:

<?php

add_filter('the_content', 'my_custom_text', 11);

function my_custom_text($content) {    

    $content = ... ; //here you modify what your output is   
    return $content;
}