Wordpress,PHP,アフィリエイトとかの個人メモを記録していくよ
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
表示されるリストのディフォルトは<li>タグで囲まれているので、設定のテンプレートを編集すればOK<?phpif (function_exists('get_most_viewed')){get_most_viewed();}?>
$most_viewed = $wpdb->get_results("SELECT DISTINCT $wpdb->posts.*, (meta_value+0) AS views FROM $wpdb->posts LEFT JOIN $wpdb->postmeta ON $wpdb->postmeta.post_id = $wpdb->posts.ID WHERE post_date < '".current_time('mysql')."' AND $where AND post_status = 'publish' AND meta_key = 'views' AND post_type = 'post' AND post_password
= '' ORDER BY views DESC LIMIT $limit");
面倒なので固定記事内にFunctionかいちゃった。<?phpfunction get_all_category_all() {if ( ! $cat_all = wp_cache_get( 'all_category_all', 'category' ) ) {$cat_all = get_terms( 'category', 'fields=all&get=all&orderby=id' );wp_cache_add( 'all_category_all', $cat_all, 'category' );}return $cat_all;}$arrys = get_all_category_all();foreach ( $arrys as $arry ) {#親のあるカテゴリはスキップif ( $arry->parent != 0 ) {echo '<div style="background-color:#eeeeee;">'.$arry -> name. '</div>';if (function_exists('get_most_viewed_category')) {get_most_viewed_category($arry -> term_id, 'post', 10);}}
ブログ内検索
最新記事
カテゴリー
最新コメント
広告
プロフィール
なんとなくはじめてみたよ
カウンター