开发者 | bboy8k |
---|---|
更新时间 | 2016年4月7日 17:35 |
捐献地址: | 去捐款 |
PHP版本: | 3.0 及以上 |
WordPress版本: | 4.2 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
plugin
folder to the /wp-content/plugins/
directoryExample for using with custom query:
<?php
// You need protect against arbitrary paged values
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1;
$args = array(
'post_type' => 'post',
'posts_per_page' => 6,
'paged' => $paged,
);
$my_query = new WP_Query( $args );
?>You can do that like so:
`
== Screenshots ==
1. Default styling
1. Square styling
1. Circle styling
1. Diamond square styling
1. Gerenal options
1. Fill posts per page number for your taxonomiesIf you need to configure the CSS of this plugin, you can copy the easy-wp-pagenavigation.css
file from the plugin directory to your theme's directory and make your modifications there.
Also, you can override the CSS of Easy WP Page Navigation in other CSS file.
Do it, you won't lose your changes when you update this plugin.