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"; $output .= $post_HTML; echo $output; ?>
    显示热评文章

    最受关注文章

    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) { ?>
  • 调用 Gravatar(只适应 2.5以上) 调用前两篇日志,后续 3篇日志列表 Posted on in (Google ads here)

    Posted on in 随机文章

    随机文章

  • 安全的调用 Wordpress插件模板代码

    部件标题

      

    转载于:https://www.cnblogs.com/qiandu/p/4034847.html

    你可能感兴趣的:(wordpress一些常用代码)