WP-PageNavi の記述場所
-
以下がindex.phpページなのですが
「WP-PageNavi」を設置したい場所に以下のコードを挿入します。
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>
とのことなのですが
どこに入れても反応というか変化がありません。どこに入れたらいいのでしょうか?
(別テーマですが他のブログには問題なく入ったのに・・・)
*************
<?php get_header(); ?><div id=”content”>
<div id=”content-inner”><div id=”alpha”>
<div id=”alpha-inner”><?php trackback_rdf(); ?>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(2) ) : ?>
<!– ウェルカム –>
<div id=”welcome_message”>
<?php query_posts(‘pagename=welcome’); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h3 class=”title”><?php the_title(); ?></h3>
<div class=”content”>
<?php global $more; $more = 0; ?>
<?php the_content(__(‘詳細’)); ?>
<div class=”clear”></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<!– end_ウェルカム–><!– トップ表示 –>
<?php query_posts(‘tag=トップ表示’); ?>
<?php if (have_posts()) : ?>
<div id=”top-entry”>
<?php while (have_posts()) : the_post(); ?>
<div class=”top-entry-content”>
<h3 class=”title”><?php the_title(); ?></h3>
<div class=”content”>
<?php the_content(__(‘> 詳細’)); ?>
<div class=”clear”></div>
</div>
</div><?php endwhile; ?>
</div>
<?php endif; ?><!– end_トップ表示 –>
<!– 新着記事一覧 –>
<div id=”top-news”>
<h3>新着情報</h3><div class=”news”>
<?php
$myposts = get_posts(‘post_type=post’);
foreach($myposts as $post) :
?>
<div class=”day”><?php the_time(‘Y.m.d’);?></div>
<div class=”title”>“><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </div>
<div class=”clear”></div>
<?php endforeach; ?></div>
<!– end_新着記事一覧 –>
<?php endif; ?>
<div id=”gotop”>
このページのトップへ
</div></div>
</div><?php get_sidebar();?>
<?php get_footer(); ?>
- トピック「WP-PageNavi の記述場所」には新たに返信することはできません。