« | »

Default/comments.php

ブログ記事に対して、関連した意見、注釈などを投稿することを「コメント(comments)」といいます。コメント欄は通常、「記事用テンプレート(single.php)」を使った、投稿記事ページに表示されますが、その他のページでも、コメント欄を追加することもあります。また、「トラックバックURL」や「コメントフォーム」のなどの記述もあるため、パーツテンプレート化しておくほうが便利です。

「コメントテンプレート(comments.php)はテンプレートタグの〈?php comments_template(); ?〉を記述することで、各テンプレートファイルに読み込まれます。

もしテーマ内にcomments.phpがない場合は「Defaultテーマ」のcomments.phpが呼び出されて代用するようになっています。もちろん、wp-contents/themes/の中に「Defaultテーマ」がない場合は表示されません。

Default_Theme/comments.php

<?php
/**
 * @package WordPress
 * @subpackage Default_Theme
 */

// Do not delete these lines
	if (!empty($_SERVER['SCRIPT_FILENAME']) &amp;&amp; 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
		die ('Please do not load this page directly. Thanks!');

	if ( post_password_required() ) { ?>
		<p class="nocomments">This post is password protected. Enter the password to view comments.</p>
	<?php
		return;
	}
?>

<!-- You can start editing here. -->

//コメントが許可されていて、ある場合の表示
<?php if ( have_comments() ) : ?>
	<h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3>

	<div class="navigation">
		<div class="alignleft"><?php previous_comments_link() ?></div>
		<div class="alignright"><?php next_comments_link() ?></div>
	</div>

	<ol class="commentlist">
	<?php wp_list_comments(); ?>
	</ol>

	<div class="navigation">
		<div class="alignleft"><?php previous_comments_link() ?></div>
		<div class="alignright"><?php next_comments_link() ?></div>
	</div>
 <?php else : // this is displayed if there are no comments so far ?>

//コメント投稿が許可されていない場合の表示
	<?php if ('open' == $post->comment_status) : ?>
		<!-- If comments are open, but there are no comments. -->

	 <?php else : // comments are closed ?>
		<!-- If comments are closed. -->
		<p class="nocomments">Comments are closed.</p>

	<?php endif; ?>
<?php endif; ?>

//コメントが許可されていて、ある場合の表示
<?php if ('open' == $post->comment_status) : ?>

<div id="respond">

<h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>

<div class="cancel-comment-reply">
	<small><?php cancel_comment_reply_link(); ?></small>
</div>

<?php if ( get_option('comment_registration') &amp;&amp; !$user_ID ) : ?>
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out ?</a></p>

<?php else : ?>

//コメント欄の表示
<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>

<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>

<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>

<?php endif; ?>

<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->

<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4">

関連情報:

  1. Default/single.php

  2. category.php

  3. Default/archive.php

  4. Default/header.php

  5. Default/index.php

  6. Default/sidebar.php

  7. Default/page.php

2009.04.20 17;57

« | »

⇒この記事を印刷する

コメント&トラックバック

トラックバックURL: http://www.exe1993.jp/wpbusiness/archives/default_comments_php/trackback/

[...] templates and logos. Through strong class=keywordTemplate/strong Monster you can buy templates Default?comments.php – exe1993.jp 04/20/2009 [...]

2009/04/21 12:21 AM posted by Posts about Theme as of April 20, 2009 · Fee Premium Themes Wordpress





このページのトップへ

ewb_blue-l_160170.png
art-img.gif