2011年10月26日
きまっし金沢の雑記帖をもっと使いやすくするためにWordPressのプラグインを追加して整備しました。
WP-PageNavi というプラグインを利用して,希望のページに行きやすくしました。
「wp-pagenavi」フォルダを、wp-content/plugins/ フォルダにアップロードしてwp-pagenaviを有効化。
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ; ?>
を表示したい場所に挿入するとOKです。
WP-AddQuicktagというプラグインを利用して,定型文の登録ができるようにしました。文中に太字の赤い文字を挿入しやすくなりました。
2011年11月3日
WordPressトップページの記事一覧にコメントも表示できるようにしました。
http://ja.forums.wordpress.org/topic/1763
を参考にindex.phpの記事表示部の後ろに
<?php $withcomments = true; comments_template( '/index_comments.php' ); ?>
を入れます。
comments.phpの不必要な部分を削除してindex_comments.phpを作成してindex.phpの階層にアップロードして完成です。
ちなみにindex_comments.phpは下記のようにしました。
——————————————————————————————————–
<?php // Do not delete these lines
if (‘comments.php’ == basename($_SERVER[‘SCRIPT_FILENAME’]))
die (‘Please do not load this page directly. Thanks!’);
if (!empty($post->post_password)) { // if there’s a password
if ($_COOKIE[‘wp-postpass_’ . COOKIEHASH] != $post->post_password) { // and it doesn’t match the cookie
?>
<p>This post is password protected. Enter the password to view comments.<p>
<?php return;
}
}
?>
<div id=”comments”>
<?php if ($comments) : ?>
<div>
<?php foreach ($comments as $comment) : ?>
<div id=”comment-<?php comment_ID() ?>”>
<?php if ($comment->comment_approved == ‘0’) : ?>
<em>Your comment is awaiting moderation.</em>
<?php endif; ?>
<div><?php comment_text() ?></div>
<p>Posted at <?php comment_date(‘Y.m.j’) ?> <?php comment_time() ?> by <?php comment_author_link() ?><?php if ( $user_ID ) : ?> <?php endif; ?></p>
</div>
<?php endforeach; /* end for each comment */ ?>
</div>
<?php else : // this is displayed if there are no comments so far ?>
<?php endif; ?>
</div><!– comments –>
—————————————————————————————————-