有两种方法可以实现它。
$args = array(
\'post_type\' => \'post\',
\'posts_per_page\'=>1
);
$mj_query = new WP_Query( $args );
作者
the_expcerpt(), 您可以使用摘录字段显示文章列表页面的内容。您可以通过当前的后期编辑页面启用“按屏幕显示摘录字段”选项。只需将html元素放入该摘录字段并使用以下代码即可。它将根据您的需要显示它。
while($mj\\u query->have\\u posts()){
the_excerpt();
}
作者get_the_content(), 您可以通过以下方式获取特定帖子的所有内容get_the_content() 函数并使用substr() 作用在这里,您可以根据要显示的内容使用长度。
while ( $mj_query->have_posts() ) {
$theExcerpt = get_the_content();
echo substr($theExcerpt,0,100);
}