简单的方法是使用-excerpt()
否则您也可以使用wp_trim_words( get_the_content(), 40, \'...\' );
在a中excerpt()
, 您必须在后端的摘录中添加内容。虽然wp_trim_words
将从内容中删除单词。
在提要栏中,您必须向函数中添加短代码。在侧栏小部件中使用的php文件(如果您使用的是小部件)。
function test_short(){
ob_start();
global $post;
echo wp_trim_words( get_the_content($post->ID), 40, \'...\' );
return ob_get_clean();
}
add_shortcode(\'test_short\', \'test_short\');