目前,我的帖子标题受到wp\\u trim\\u单词的限制。下面是代码。
// Filtering character limit on post titles.
add_filter( \'the_title\', \'wpse_75691_trim_words\' );
function wpse_75691_trim_words( $title )
{
// limit to ten words
return wp_trim_words( $title, 10, \'\' ) . \' ...\';
}
我现在遇到的问题是,如果我单击该帖子标题,它会将我重定向到单个页面,标题不会返回到原来的帖子标题,该标题超过10个字。
有人能告诉我这里的方向吗?对于WP来说,这是一个全新的概念。谢谢