2017-11-27から1日間の記事一覧

Wordpress pre_get_postsアクションフック is_main_query()

functions.php ------- /*----- クエリ ------*/function my_pre_get_posts($query) { // 管理画面 or メインクエリ 以外には設定しない if(is_admin() || $query->is_main_query()) { # is_main_query => 現在のクエリがメインクエリかどうかを判断する。 r…

Wordpress WP_Query

'post', // 投稿記事だけを指定 'posts_per_page' => '3', // 最新記事を3件表示 ); $the_query = new WP_Query($args); if($the_query->have_posts()) : ?><section class="recentEntries"> <h1 class="type-C">最新記事</h1> <div class="entries"> have_posts…</div></section>

Wordpress RSS出力

functions.php --- // heade Rss リンク出力add_theme_support('automatic-feed-links'); // RSSの出力する文字数 function my_excerpt_mblength($length) { return 50; //抜粋に出力する文字数}add_filter('excerpt_mblength', 'my_excerpt_mblength'); // …

高速化 メモ

# キャッシュを有効にするHeader set Cache-Control "max-age=2628000, public" # キャッシュ設定<IfModule mod_expires.c>ExpiresActive On# キャッシュ初期化(1秒に設定)ExpiresDefault "access plus 1 seconds"ExpiresByType image/jpg "access 1 year"ExpiresByType image/jpeg</ifmodule>…