こんにちは
index.php の
<?php get_header(); ?>
<div class="content-title">
Latest entries
<a href="javascript: void(0);" id="mode"<?php if ($_COOKIE['mode'] == 'grid') echo ' class="flip"'; ?>></a>
</div>
<?php query_posts(array(
'post__not_in' => $exl_posts,
'paged' => $paged,
)
); ?>
'post__not_in' => $exl_posts
の所を以下のようにコメントアウトしてみてください
<?php get_header(); ?>
<div class="content-title">
Latest entries
<a href="javascript: void(0);" id="mode"<?php if ($_COOKIE['mode'] == 'grid') echo ' class="flip"'; ?>></a>
</div>
<?php query_posts(array(
// 'post__not_in' => $exl_posts,
'paged' => $paged,
)
); ?>
追伸:
このテーマでは、
function feedcount($feedurl=’http://feeds.feedburner.com/wpshower’)
とか、
function twittercount($twitter_url=’http://twitter.com/wpshower’)
みたいな関数が使われています。
外部サイトへのアクセスを伴うみたいなので、このあたりの事は、ご自身で判断してください
早速のご教示ありがとうございます。
両方に表示されるようになりました。
本当にありがとうございました。