12.16.2013

lolipopサーバーでデータベースのインポートエラーの場合

コメントアウト

# CREATE DATABASE `LAA0085○-wp` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
# USE `LAA0085○-wp`;

10.21.2013

wordpress初期設定/recentcommentsのCSS削除

http://www.madeinthepain.com/wordpress-head-recentcomments-style-delete/

/* インラインスタイル削除 */

function remove_recent_comments_style() {
    global $wp_widget_factory;
    remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
}
add_action( 'widgets_init', 'remove_recent_comments_style' );

9.20.2013

wordpress 子ページリスト(孫ページ除く)

get_pages(array(
    'child_of' => $page->ID,
    'parent' => $page->ID,
    'sort_column' => 'menu_order',
    'sort_order' => 'asc',
));
parentを設定。 child_ofだけの場合は、孫ページまで表示。

9.05.2013

wordpress 固定ページのスラッグ取得

<?php echo attribute_escape($post->post_name); ?>

7.11.2013

google map コントローラーの表示がつぶれるとき

スタイルシートに追加 #gmap img { max-width:none; }

7.04.2013

wordpress 親ページのスラッグ取得

<?php echo $parent_slug = get_page_uri($post->post_parent); ?>

7.01.2013

wordpressで現在のページのURL取得

<?php $str = get_bloginfo('url') . get_permalink(); ?>

6.25.2013

半角中黒

·

3.04.2013

プルダウンメニューとyoutube動画埋め込み

ファイルパスの後に「?wmode=transparent」を追加