instantShiftより22のWordPress のテーマハック方法とソースコードが 公開されていたのでご紹介します。 今日は私用のため、時間が無いので はしょってご紹介しますので 残りは記事元でご確認下さい。 いずれもプラグインを使用しない方法です。 人気の記事を抽出する sidebar.phpを開いて以下のコードを挿入。 <h2>Popular Posts</h2> <ul> <?php $result = $wpdb->get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5"); foreach ($result as $post) { setup_postdata($post); $postid = $post->ID; $