その他– category –
-
その他
ログインしないと見れない場所
×マルチサイトだとダメ。各子サイトにログインでめんどくさい only members page <?php if(current_user_can('read_private_pages')) : // メンバーページここから ?> ログインしないと見れない場所 <?php endif;// メンバーページここま... -
その他
投稿表示を古い順に
category.phpに <?php if (have_posts()) : ?> の上に <?php query_posts('order=asc&cat=' . $cat ); ?> -
その他
簡単モーダルウィンドウ
http://opensource.steffenhollstein.de/templates/modalbox/ ModalBox -
その他
[WordPress] コメント欄の名前だけを必須に。
http://ichi.fool.jp/blog/?p=23 まんまだと、『名前とメールアドレスの入力を必須にする』でメアドも必須になっちゃうから。 %inst-dir%/wp-comments-post.php 『if ( ” == $comment_content )』のある行の上に以下を追加。 //名前だけ必須 if(!$user->... -
その他
アップする画像を小さく
Imsanity -
その他
テキストシャドウ
text-shadow: 5px 5px 5px gray; -
その他
トップページの記事一覧にコメントも表示したい
<?php $withcomments = true; comments_template(); ?> ※<?php endwhile; ?>の前に http://ja.forums.wordpress.org/topic/1763
1