wordpress 投稿内容の文字数制限
7月 12th, 2011 Author :: / Categories :: WordPress / トラックバックURL / No Comments »
<?php remove_filter('the_content', 'wpautop'); ?><?php echo mb_substr(strip_tags($post->post_content),0,60); ?>
最初のコードは、wordpressで自動的に挿入されてしまうタグが必要ない時に無効にする役割を果たすらしい。
で、二行目のコードで60文字まで表示とする。
ただ、これだとコンテンツ内の画像が表示されないので、ちょっと考え中。
7月 12th, 2011 Author :: / Categories :: WordPress / トラックバックURL / No Comments »
wordpress カテゴリーの配列
7月 12th, 2011 Author :: / Categories :: WordPress / トラックバックURL / No Comments »
<?php $cat = get_the_category(); $catslug = $cat[0]->slug; $catslug2 = $cat[0]->cat_name; ?>
これで配列を求めて、
<?php echo $catslug5; ?>
で呼び出す。
これで、CSSのクラスとか、イメージのファイル名を決めておけば、各カテゴリー毎に呼び出すイメージを帰られる。
7月 12th, 2011 Author :: / Categories :: WordPress / トラックバックURL / No Comments »
wordpress 固定ページ用パンくずリスト
7月 12th, 2011 Author :: / Categories :: WordPress / トラックバックURL / No Comments »
<p><a href="<?php echo get_option('home'); ?>">トップ</a> » <?php foreach ( array_reverse(get_post_ancestors($post->ID)) as $parid ) { ?><a href="<?php echo get_page_link( $parid );?>" title="<?php echo get_page($parid)->post_title; ?>"><?php echo get_page($parid)->post_title; ?></a> » <?php } ?><?php the_title(); ?></p>
忘れちゃうから、今更だけど。
7月 12th, 2011 Author :: / Categories :: WordPress / トラックバックURL / No Comments »