2016-04-20から1日間の記事一覧

WP テンプレートタグ 一覧

// ヘッダー出力 ※index.phpだけに使いた場合 header-index.phpファイルに記述し 出力時: //スタイルシート読み込み <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>"> ※テーマフォルダ直下のstyle.css // フッター出力 // ブログ・サイトのタイトル // ブログ・サ…</link>

funcitons.php 一覧

1000, 'height' => 300, 'hader-text' => false)); // 概要抜粋 文字function my_length($lenght) { return 55;// 文字数}add_filter('excerpt_mylength','my_lenght'); // 概要抜粋の省略記号function my_more($more) { return '...';}add_filter('excerpt…

カスタム機能まとめ

記述場所:functions.php // カスタムヘッダー画像 add_theme_support('custom-header',array( 'width' => 1200, // 横 'height' => 400, // 縦 'header' => false // trueでも )); 出力例:index.php 1: <div style="background-image:url<?php header_image(); ?>"> 2: <div class="A"> </div></div>