wordpress 如何根据博文的“修改时间”,来显示最近文章列表

直接上代码:

主题文件functions.php添加:

function wpb_lastupdated_posts() { 
 
// Query Arguments
$lastupdated_args = array(
'orderby' => 'modified',
'ignore_sticky_posts' => '1'
);
 
//Loop to display 5 recently updated posts
$lastupdated_loop = new WP_Query( $lastupdated_args );
$counter = 1;
$string .= '';
return $string;
wp_reset_postdata(); 
} 
 
//add a shortcode
add_shortcode('lastupdated-posts', 'wpb_lastupdated_posts');

在需要展示的模板文件处添加:

 

你可能感兴趣的:(wordpress 如何根据博文的“修改时间”,来显示最近文章列表)