Contributors: GamerZ
Donate link: http://lesterchan.net/site/donation/
Tags: commentnavi, navi, navigation, wp-commentnavi, page
Requires at least: 2.8
Tested up to: 6.3
Stable tag: trunk
Adds a more advanced paging navigation for your comments to your WordPress blog.
Example: Pages 1 of 20: [1] 2 3 4 ... Last
- Open
wp-content/themes/<YOUR THEME NAME>/comments.php
- Add:
<?php if(function_exists('wp_commentnavi')) { wp_commentnavi(); } ?>
- Go to
WP-Admin -> Settings-> CommentNavi
to configure WP-CommentNavi
- If you need to configure the CSS style of WP-CommentNavi, open and edit:
commentnavi-css.css
- WP-CommentNavi will load
commentnavi-css.css
from your theme's directory if it exists. - If it doesn't exists, it will just load the default 'commentnavi-css.css' that comes with WP-CommentNavi.
- This will allow you to upgrade WP-CommentNavi without worrying about overwriting your page navigation styles that you have create
- I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
- FIXED: XSS. esc_attr() on form values
- FIXED: XSS
- FIXED: commentnavi_textdomain instead of polls_textdomain. Props slightlydifferent.
- NEW: Supports WordPress Mutisite Network Activation
- NEW: Uses WordPress native uninstall.php
- NEW: Works For WordPress 2.8
- NEW: Added "View All Comments" Link Function
- NEW: Added "first", "page" and "last" CSS Name To Link
- NEW: Use _n() Instead Of __ngettext() And _n_noop() Instead Of __ngettext_noop()
- FIXED: Removed " " Entity
- NEW: Initial Release
- Admin - CommentNavi Options
- Default CommentNavi Style
- Open
wp-content/themes/<YOUR THEME NAME>/comments.php
- Add:
<?php if(function_exists('wp_commentnavi_all_comments_link')) { wp_commentnavi_all_comments_link(); } ?>
- The first value you pass in is the "View All Comments" link text
- Default:
wp_commentnavi_all_comments_link('View all comments');