田中のブログ

北九州在住フリーランスが仕事の合間に書く、webデザインとか食べ物とかのブログです。

【WordPress】サイト制作時の備忘録【随時更新】

固定ページを一覧表示する

f:id:KENSHIN_TANAKA:20180109104318p:plain

コード

<?php wp_list_pages('title_li='); ?>

参考サイト・リファレンス

WordPressのフッターにウィジェットを追加する方法

functions.phpに以下のコードを追記する。

ウィジェットじゃなく、直接記述する方がカスタマイズ性は高いけど、使う時のため。

register_sidebar(array('name' => 'フッター1'));
register_sidebar(array('name' => 'フッター2'));
register_sidebar(array('name' => 'フッター3'));

footer.phpに以下のコード書いて表示。

<aside>
<ul><?php dynamic_sidebar('フッター1'); ?></ul>
<ul><?php dynamic_sidebar('フッター2'); ?></ul>
<ul><?php dynamic_sidebar('フッター3'); ?></ul>
</aside>

参考サイト・リファレンス

front-pageかどうか判定するコード

<?php is_front_page(); ?>

ページ全体にclassを付与するコード

<?php body_class(); ?>

body要素に使うclass属性。

例えば、こんな感じで表示される。

これは、管理画面にログイン中に固定ページにアクセスした場合。

<body class="page-template-default page page-id-18 logged-in">

テンプレートパーツを読み込むコード

<?php get_template_part('sample'); ?>

参考サイト・リファレンス

【WordPress】任意のテンプレートパーツを読み込む関数[get_template_part() ;]の使い方。 - ONZE

関数リファレンス/get template part - WordPress Codex 日本語版

パンくずリストを使う

// パンくずリスト
function breadcrumb(){
    global $post;
    $str ='';
    if(!is_home()&&!is_admin()){ /* !is_admin は管理ページ以外という条件分岐 */
        $str.= '<div id="breadcrumb">';
        $str.= '<ul>';
        $str.= '<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="' . home_url('/') .'" class="home" itemprop="url" ><span itemprop="title">HOME</span></a></li>';
        
        /* 投稿のページ */
        if(is_single()){
            $categories = get_the_category($post->ID);
            $cat = $categories[0];
            if($cat -> parent != 0){
                $ancestors = array_reverse(get_ancestors( $cat -> cat_ID, 'category' ));
                foreach($ancestors as $ancestor){
                    $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_category_link($ancestor).'"  itemprop="url" ><span itemprop="title">'. get_cat_name($ancestor). '</span></a></li>';
                                    }
            }
            $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_category_link($cat -> term_id). '" itemprop="url" ><span itemprop="title">'. $cat-> cat_name . '</span></a></li>';
            $str.= '<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. $post -> post_title .'</span></li>';
        } 
        
        /* 固定ページ */
        elseif(is_page()){
            if($post -> post_parent != 0 ){
                $ancestors = array_reverse(get_post_ancestors( $post->ID ));
                foreach($ancestors as $ancestor){
                    $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_permalink($ancestor).'" itemprop="url" ><span itemprop="title">'. get_the_title($ancestor) .'</span></a></li>';
                                    }
            }
            $str.= '<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. $post -> post_title .'</span></li>';
        }
        
        /* カテゴリページ */ 
        elseif(is_category()) {
            $cat = get_queried_object();
            if($cat -> parent != 0){
                $ancestors = array_reverse(get_ancestors( $cat -> cat_ID, 'category' ));
                foreach($ancestors as $ancestor){
                    $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_category_link($ancestor) .'" itemprop="url" ><span itemprop="title">'. get_cat_name($ancestor) .'</span></a></li>';
                }
            }
            $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. $cat -> name . '</span></li>';
        }
        
        /* タグページ */
        elseif(is_tag()){
            $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. single_tag_title( '' , false ). '</span></li>';
        } 
        
        /* 時系列アーカイブページ */
        elseif(is_date()){
            if(get_query_var('day') != 0){
                $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_year_link(get_query_var('year')). '" itemprop="url" ><span itemprop="title">' . get_query_var('year'). '年</span></a></li>';
                $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_month_link(get_query_var('year'), get_query_var('monthnum')). '" itemprop="url" ><span itemprop="title">'. get_query_var('monthnum') .'月</span></a></li>';
                $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. get_query_var('day'). '</span>日</li>';
            } elseif(get_query_var('monthnum') != 0){
                $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_year_link(get_query_var('year')) .'" itemprop="url" ><span itemprop="title">'. get_query_var('year') .'年</span.</a></li>';
                $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. get_query_var('monthnum'). '</span>月</li>';
            } else {
                $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. get_query_var('year') .'年</span></li>';
            }
        }   

        /* 投稿者ページ */
        elseif(is_author()){
            $str .='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">投稿者 : '. get_the_author_meta('display_name', get_query_var('author')).'</span></li>';
        }   
        
        /* 添付ファイルページ */
        elseif(is_attachment()){
            if($post -> post_parent != 0 ){
                $str.= '<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="'. get_permalink($post -> post_parent).'" itemprop="url" ><span itemprop="title">'. get_the_title($post -> post_parent) .'</span></a></li>';
            }
            $str.= '<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">' . $post -> post_title . '</span></li>';
        }

        /* 検索結果ページ */
        elseif(is_search()){
            $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">「'. get_search_query() .'」で検索した結果</span></li>';
        } 
        
        /* 404 Not Found ページ */
        elseif(is_404()){
            $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">お探しの記事は見つかりませんでした。</span></li>';
        } 
                
        /* その他のページ */
        else{
            $str.='<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="title">'. wp_title('', false) .'</span></li>';
        }
        $str.='</ul>';
        $str.='</div>';
    }
    echo $str;
}

参考サイト・リファレンス

プラグインを使わずに『パンくずリスト』を表示させる - ギーク日記

テンプレートファイル上でギャラリーを作成する

<?php echo do_shortcode( '[gallery option1="value1"]' ); ?>

参考サイト・リファレンス

ギャラリーショートコードの使い方 - WordPress Codex 日本語版

ショートコードをテンプレートファイル内に記述

<?php echo do_shortcode('[ショートコードの文字列]'); ?>

参考サイト・リファレンス

WordPressのテーマphpでショートコードを呼び出す方法 | Web制作・Webシステムの株式会社ワイワイエンジン

関数リファレンス/do shortcode - WordPress Codex 日本語版

サイトマップを作るプラグイン「PS Auto Sitemap」

参考サイト・リファレンス

サイトマップページを作成する | ワードプレステーマTCD