设置the_content字符的限制

时间:2011-11-08 21:34:31

标签: php wordpress

我正在使用此代码为the_content设置300个字符的限制。

我如何设置何时使用它以及何时不使用?

<?php   
add_filter("the_content", "plugin_myContentFilter");   
function plugin_myContentFilter($content)
{
// Take the existing content and return a subset of it
return substr($content, 0, 300);
}
?>

1 个答案:

答案 0 :(得分:0)

<?php

    function plugin_myContentFilter($content) {
        if (!is_single()) {
            return substr($content, 0, 300);
        } else {
            return $content;
        }
    }
    add_filter("the_content", "plugin_myContentFilter");

?>

除非在一个帖子页面上,否则会将内容缩短为300个字符。