排序
// 创建下载文章列表短代码 add_shortcode('download_list', 'custom_download_list'); function custom_download_list($atts) { // 设置默认参数 $atts = shortcode_atts(array( 'posts_per_page' => 20, 'orderby' => 'date', 'order' => 'DESC', ), $atts); // 查询下载文章 $args = array( 'post_type' => 'download', 'posts_per_page' => $atts['posts_per_page'], 'orderby' => $atts['orderby'], 'order' => $atts['order'], 'post_status' => 'publish', ); $query = new WP_Query($args); ob_start(); // 开始输出缓冲 if ($query->have_posts()) { echo '
暂无下载文章
'; } wp_reset_postdata(); return ob_get_clean(); // 返回缓冲内容 }