//显示20篇最新更新文章
format=custom这里主要用来自定义这份文章列表的显示样式。(fromat=custom也可以不要,默认以UL列表显示文章标题。)
展示出来得样子
有时候需要根据自己的需要在wordpress的首页调用特定的内容,比如 最新文章|评论|标签云|文章分类等等。下面是从互联网上收集到的相关代码:
显示最新文章
显示最新评论
comments
LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =
$wpdb->posts.ID)
WHERE comment_approved = '1' AND comment_type = '' AND
post_password = ''
ORDER BY comment_date_gmt DESC
LIMIT 10";
$comments = $wpdb->get_results($sql);
$output = $pre_HTML;
$output .= "\n
显示热评文章
get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 10");
foreach ($result as $topten) {
$postid = $topten->ID;
$title = $topten->post_title;
$commentcount = $topten->comment_count;
if ($commentcount != 0) { ?>
显示文章分类
Categories
显示Wordpress标签云
在侧栏显示页面列表
Pages
显示归档
Archives
引用:
https://www.cnblogs.com/tinyphp/p/5859167.html