`
king_lm
  • 浏览: 8134 次
社区版块
存档分类
最新评论

WP函数--comments_popup_link

    博客分类:
  • WP
WP 
阅读更多

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

$zero
(string) (optional) Text to display when there are no comments.
Default: 'No Comments'
$one
(string) (optional) Text to display when there is one comment.
Default: '1 Comment'
$more
(string) (optional) Text to display when there are more than one comments. '%' is replaced by the number of comments, so '% so far' is displayed as "5 so far" when there are five comments.
Default: '% Comments'
$css_class
(string) (optional) CSS (stylesheet) class for the link.
Default: None
$none
(string) (optional) Text to display when comments are disabled.
Default: 'Comments Off'

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

分享到:
评论

相关推荐

    WordPress模板代码帮助手册中文版

    - `comments_popup_link()`:创建一条指向评论的链接。 - `the_title()`:显示日志或页面的标题。 - `the_permalink()`:获取并显示日志或页面的永久链接。 - `the_category()`:列出日志的分类。 - `the_author()`...

    WordPress模版开发完整解读

    - `comments_popup_link()`:创建一个弹出式评论链接。 #### 模板常用PHP函数及命令 模板中频繁使用的PHP函数和命令有: - `get_header()`、`get_sidebar()`、`get_footer()`:分别调用头部、侧边栏、底部模板。 ...

    wordpress高级教程

    - **示例**:`&lt;?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?&gt;` ##### 13. `&lt;?php next_posts_link('&laquo; Older Entries'); ?&gt;` - **功能**:显示指向旧文章的链接。 - **示例**:...

    wordpress模板常用函数集锦

    - `comments_popup_link()`:在文章中创建评论链接。 - `the_title()`:输出文章或页面的标题。 - `the_permalink()`:输出文章或页面的永久链接。 - `the_category(', ')`:输出文章的分类。 - `the_author()`...

    wordpress 代码调用方法与技巧集锦

    - `comments_popup_link()`:生成一条链接,打开日志的评论框。 - `the_title()`:输出日志或页面的标题。 - `the_permalink()`:获取日志或页面的永久链接。 - `the_category()`:显示日志的分类。 - `the_...

    wordpress 二次开发 函数解析

    * `&lt;?php comments_popup_link(); ?&gt;`:显示一篇日志的留言链接。 * `&lt;?php the_title(); ?&gt;`:显示一篇日志或页面的标题。 * `&lt;?php the_permalink(); ?&gt;`:显示一篇日志或页面的永久链接/URL 地址。 * `&lt;?php the_...

    wordpress常用标签调用代码大全

    - `&lt;?php comments_popup_link(); ?&gt;`:用于显示日志的留言链接。 - `&lt;?php wp_list_pages(); ?&gt;`:用于显示博客的页面列表。 - `&lt;?php wp_list_cats(); ?&gt;`:用于显示博客的分类列表。 - `&lt;?php next_post_link...

    Wordpress调用函数大全

    * `&lt;?php comments_popup_link(); ?&gt;` 显示一篇日志的留言链接 * `&lt;?php the_title(); ?&gt;` 显示一篇日志或页面的标题 * `&lt;?php the_permalink(); ?&gt;` 显示一篇日志或页面的永久链接/URL 地址 * `&lt;?php the_category...

    wordpress调用函数大全[参考].pdf

    9. **`comments_popup_link()`**: 创建一个指向文章评论的链接,方便用户参与讨论。 10. **`the_title()`**: 输出文章或页面的标题。 11. **`the_permalink()`**: 显示文章或页面的永久链接,提供给用户直接访问。...

    worpress标签

    `&lt;?php comments_popup_link(); ?&gt;` 用于显示评论链接,当页面有评论时,会显示链接以弹出评论表单。 #### 8. `&lt;?php the_permalink(); ?&gt;` 显示帖子的永久链接,即URL地址。 #### 9. `&lt;?php the_category(', ');...

    WordPress高级教程 (最新版)

    - **`&lt;?php comments_popup_link('No Comments &raquo;', '1 Comment &raquo;', '% Comments &raquo;'); ?&gt;`**:显示评论数量,并提供评论链接。 - **`&lt;?php next_posts_link('&laquo; Older Entries'); ?&gt;`**:显示...

    wordpress教程

    - **示例**:`&lt;?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?&gt;` ##### 12. `&lt;?php next_posts_link('&laquo; Older Entries'); ?&gt;` 和 `&lt;?php previous_posts_link...

    wordpress代码调用大全更新到_3.0版[定义].pdf

    - `&lt;?php comments_popup_link(); ?&gt;`:生成一条文章的评论链接。 - `&lt;?php the_title(); ?&gt;`:显示文章或页面的标题。 - `&lt;?php the_permalink(); ?&gt;`:显示文章或页面的永久链接。 这些代码调用是构建和定制...

    [WordPress开发必备]wordpress-help-sheet.pdf

    - **`&lt;?php comments_popup_link(); ?&gt;`**:显示评论链接,通常用于文章页。 - **`&lt;?php the_title(); ?&gt;`**:输出文章标题。 - **`&lt;?php the_permalink()?&gt;`**:输出文章的永久链接。 - **`&lt;?php the_category(',')...

    WordPress高级教程

    12. **`&lt;?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?&gt;`**: - **用途**: 显示日志的评论状态。 - **应用场景**: 在每篇日志下方显示评论数量,并链接到评论页面...

    wordpress模板开发详情

    5. **`&lt;?php comments_popup_link(); ?&gt;`**: 创建评论链接,显示评论数量或评论表单。 6. **`&lt;?php wp_list_pages(); ?&gt;`**: 列出所有页面的链接。 7. **`&lt;?php wp_get_archives(); ?&gt;`**: 显示日期归档链接。 模板...

    wordpress常用的函数、条件判断以及文件总结

    7. **comments_popup_link()**: 生成评论链接,可选择在新窗口或当前窗口打开评论。 8. **the_title()**: 显示内容页(Post/Page)的标题。 9. **the_permalink()**: 获取内容页(Post/Page)的永久链接。 10. **the...

Global site tag (gtag.js) - Google Analytics