-
最近の投稿
最近のコメント
- カスタムメニューを画像にする に Webnist より
- ウィジェットタイトルに画像を入れる に カスタムメニューを画像にする | Webnist Code より
アーカイブ
カテゴリー
メタ情報
月別アーカイブ: 11月 2010
カスタムメニューを画像にする
以下をテーマ内のfunction.phpに挿入してください。 add_filter( ‘the_title’, ‘img_nav_menu_title’ ); function img_nav_menu_title($title) { if( preg_match( "/\[\[(.*)\]\]/", $title, $match ) ) { $get_title = $match[1]; $get_img_url = clean_url($get_title); if($get_title == ‘none’) { $title = ”; } else { $get_img_dir = str_replace( get_option(‘home’) . ‘/’, ABSPATH, $get_img_url … 続きを読む
ウィジェットタイトルに画像を入れる
以下をテーマ内のfunction.phpに挿入してください。 add_filter( ‘widget_title’, ‘img_widget_title’ ); function img_widget_title($title) { if( preg_match( "/\[\[(.*)\]\]/", $title, $match ) ) { $get_title = $match[1]; $get_img_url = clean_url($get_title); if($get_title == ‘none’) { $title = ”; } else { $get_img_dir = str_replace( get_option(‘home’) . ‘/’, ABSPATH, $get_img_url … 続きを読む