WordPress - ネタ帳

WordPress 振り返りメモです

一般

カスタム背景の無効化

子テーマのfunction.phpに追記して下さい。Codex

add_action( 'after_setup_theme', 'my_remove_custom_background', 11);
function my_remove_custom_background() {
    remove_theme_support( 'custom-background');
}

自動変換を無効化

ダブルクォート、シングルクォートやハイフンなどは自動置換されます。以下のコードをfunctions.phpへ追加することで無効化できます。

remove_filter('the_title', 'wptexturize');		// タイトル
remove_filter('the_content', 'wptexturize');	// 投稿
remove_filter('comment_text', 'wptexturize');	// コメント
remove_filter('the_excerpt', 'wptexturize');	// 抜粋

自動パラグラフ機能を無効化

remove_filter('the_content', 'wpautop');	// 投稿
remove_filter('the_excerpt', 'wpautop');	// 抜粋

http://codex.wordpress.org/Function_Reference/wpautop

youtubeの動画のサムネイルを取得

http://i.ytimg.com/vi/「動画のID」/「取得したいサムネ番号」.jpg
「動画のID」:http://www.youtube.com/watch?&v=「このID」
「取得したいサムネ番号」:1,2,3.....
プラグイン Video Thumbnails

ショートコード

Gallery Shortcode

"メディア"にタグをつける

Media Tags

"固定ページ"にタグをつける

プラグイン

An error occurred while parsing your RSS feed. Check that it's a valid XML file.
quick-tagを追加できる「AddQuicktag
価格表実装「Pricing Table」「Price Table
レスポンシブ対応化「WP Touch」
フォント設定 WP Google Fonts Google Typography
datepicker実装 「Contact Form 7 Datepicker」
アンケート「WP-Polls
記事文字数 カウント 「Word Stats」「WP Character Count」

文字サイズを要素にフィットさせる「WP slabText」
新規投稿のデフォルトカテゴリーを設定「WordPress Default Category」http://wordpress.org/plugins/default-category/

レストランメニュー表示に使えるプラグイン
5 WordPress Restaurant Menu Plugins to Whet Your Appetite
http://premium.wpmudev.org/blog/wordpress-restaurant-menu-plugins/

Custom Field Template
https://wordpress.org/plugins/custom-field-template/

開発用プラグイン

その他

「WordPress アップデート失敗 現在メンテナンス中のため、しばらくの間ご利用いただけません。」から抜け出せない

ルート下にあるファイル".maintenance"を削除

float解除

<br clear="all">

PHPとHTMLの混合部分をまとめてコメントアウトする方法

<?php if(0) { ?>
  <h3>消える</h3>
  <?php echo "消える"; ?>
<?php } ?>

<?php if(0) { ?>と<?php } ?>で囲まれた部分がコメントアウトされます。

readme.html

ダウンロードしたファイルを解凍すると直下にreadme.htmlとreadme-ja.htmlというファイルがあります。いろいろ情報がのっているため念のため削除しておきましょう。

CSSファイル名にRTLとついたもの(wp-admin-rtl.cssなど)

A. RTLとはRight to Leftの略。アラビア語など右から左に綴る言語のためのスタイルシート

    PAGE TOP ↑