Linux 软件免费装

Floating NextPrev

开发者 claudiosanches
更新时间 2020年8月11日 07:02
捐献地址: 去捐款
PHP版本: 3.8 及以上
WordPress版本: 5.5
版权: GPLv2 or later
版权网址: 版权信息

标签

jquery navigation floating

下载

2.0.0 2.1.0 2.2.0 2.3.0

详情介绍:

The Floating NextPrev displays buttons for navigation between your blog posts. The icons are displayed only within the pages of posts and can promote a better navigation for your visitors. Contribute You can contribute to the source code in our GitHub page.

安装:

屏幕截图:

  • Plugin in action.
  • Plugin settings.

常见问题:

What is the plugin license?

  • This plugin is released under a GPL license.

Why the plugin is not working?

  • Probably due to incompatibility of jQuery. Check to see if this plugin modifying the jQuery version of your WordPress.

How navigating only in posts in the same category?

Paste this code in functions.php file of your theme: add_filter( 'floating_nextprev_in_same_cat', '__return_true' );

How to hide in some categories?

Use this example in functions.php file of your theme: function floating_nextprev_exclude_categories( $excluded_categories ) { $excluded_categories = '1,2,3'; // add your categories ids. return excluded_categories; } add_filter( 'floating_nextprev_excluded_categories', 'floating_nextprev_exclude_categories' );

How can I control the display?

You can control the display using the floating_nextprev_display filter. Example how to display only in news category: function floating_nextprev_only_in_news( $display ) { return in_category( 'news' ); } add_filter( 'floating_nextprev_display', 'floating_nextprev_only_in_news' );

How to change the "Previous" and "Next" titles?

Use the floating_nextprev_prev_title and floating_nextprev_next_title filters. Example: function floating_nextprev_prev_title( $title ) { return __( '←', 'textdomain' ); } add_filter( 'floating_nextprev_prev_title', 'floating_nextprev_prev_title' ); function floating_nextprev_next_title( $title ) { return __( '→', 'textdomain' ); } add_filter( 'floating_nextprev_next_title', 'floating_nextprev_next_title' );

更新日志:

2.3.0 - 2016/08/10