// 创建下载文章列表短代码 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 ''; // 添加简单的分页(可选) // paginate_links() 需要更多代码,此处省略 } else { echo '

暂无下载文章

'; } wp_reset_postdata(); return ob_get_clean(); // 返回缓冲内容 }  -华盟网
 的头像-华盟网
这家伙很懒,什么都没有写...