Description
Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. This tag must be within The Loop or a comment loop.
Usage
<?php comments_popup_link( $zero, $one, $more, $css_class, $none ); ?>
Parameters
Examples
Text Response for Number of Comments
Displays the comments popup link, using "No comments yet" for no comments, "1 comment" for one, "% comments" for more than one (% replaced by # of comments), and "Comments are off for this post" if commenting is disabled. Additionally, 'comments-link' is a custom CSS class for the link.
<p> <?php comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments are off for this post'); ?> </p>
Hide Comment Link When Comments Are Deactivated
Hides the paragraph element <p></p> that contains the comments_popup_link when comments are deactivated in the Write>Post screen. Good for those who want enable/disable comments post by post. Must be used in the loop.
<?php if ( comments_open() ) : echo '<p>'; comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments are off for this post'); echo '</p>'; endif; ?>
Source File
comments_popup_link() is located in wp-includes/comment-template.php
.
source: http://codex.wordpress.org/Function_Reference/comments_popup_link
相关推荐
- `comments_popup_link()`:创建一条指向评论的链接。 - `the_title()`:显示日志或页面的标题。 - `the_permalink()`:获取并显示日志或页面的永久链接。 - `the_category()`:列出日志的分类。 - `the_author()`...
- `comments_popup_link()`:创建一个弹出式评论链接。 #### 模板常用PHP函数及命令 模板中频繁使用的PHP函数和命令有: - `get_header()`、`get_sidebar()`、`get_footer()`:分别调用头部、侧边栏、底部模板。 ...
- **示例**:`<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>` ##### 13. `<?php next_posts_link('« Older Entries'); ?>` - **功能**:显示指向旧文章的链接。 - **示例**:...
- `comments_popup_link()`:在文章中创建评论链接。 - `the_title()`:输出文章或页面的标题。 - `the_permalink()`:输出文章或页面的永久链接。 - `the_category(', ')`:输出文章的分类。 - `the_author()`...
- `comments_popup_link()`:生成一条链接,打开日志的评论框。 - `the_title()`:输出日志或页面的标题。 - `the_permalink()`:获取日志或页面的永久链接。 - `the_category()`:显示日志的分类。 - `the_...
* `<?php comments_popup_link(); ?>`:显示一篇日志的留言链接。 * `<?php the_title(); ?>`:显示一篇日志或页面的标题。 * `<?php the_permalink(); ?>`:显示一篇日志或页面的永久链接/URL 地址。 * `<?php the_...
- `<?php comments_popup_link(); ?>`:用于显示日志的留言链接。 - `<?php wp_list_pages(); ?>`:用于显示博客的页面列表。 - `<?php wp_list_cats(); ?>`:用于显示博客的分类列表。 - `<?php next_post_link...
* `<?php comments_popup_link(); ?>` 显示一篇日志的留言链接 * `<?php the_title(); ?>` 显示一篇日志或页面的标题 * `<?php the_permalink(); ?>` 显示一篇日志或页面的永久链接/URL 地址 * `<?php the_category...
9. **`comments_popup_link()`**: 创建一个指向文章评论的链接,方便用户参与讨论。 10. **`the_title()`**: 输出文章或页面的标题。 11. **`the_permalink()`**: 显示文章或页面的永久链接,提供给用户直接访问。...
`<?php comments_popup_link(); ?>` 用于显示评论链接,当页面有评论时,会显示链接以弹出评论表单。 #### 8. `<?php the_permalink(); ?>` 显示帖子的永久链接,即URL地址。 #### 9. `<?php the_category(', ');...
- **`<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>`**:显示评论数量,并提供评论链接。 - **`<?php next_posts_link('« Older Entries'); ?>`**:显示...
- **示例**:`<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>` ##### 12. `<?php next_posts_link('« Older Entries'); ?>` 和 `<?php previous_posts_link...
- `<?php comments_popup_link(); ?>`:生成一条文章的评论链接。 - `<?php the_title(); ?>`:显示文章或页面的标题。 - `<?php the_permalink(); ?>`:显示文章或页面的永久链接。 这些代码调用是构建和定制...
- **`<?php comments_popup_link(); ?>`**:显示评论链接,通常用于文章页。 - **`<?php the_title(); ?>`**:输出文章标题。 - **`<?php the_permalink()?>`**:输出文章的永久链接。 - **`<?php the_category(',')...
12. **`<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>`**: - **用途**: 显示日志的评论状态。 - **应用场景**: 在每篇日志下方显示评论数量,并链接到评论页面...
5. **`<?php comments_popup_link(); ?>`**: 创建评论链接,显示评论数量或评论表单。 6. **`<?php wp_list_pages(); ?>`**: 列出所有页面的链接。 7. **`<?php wp_get_archives(); ?>`**: 显示日期归档链接。 模板...
7. **comments_popup_link()**: 生成评论链接,可选择在新窗口或当前窗口打开评论。 8. **the_title()**: 显示内容页(Post/Page)的标题。 9. **the_permalink()**: 获取内容页(Post/Page)的永久链接。 10. **the...