Pagebar2

Pagebar2

Pagebar adds a nice page bar to your blog posts, multipaged posts and paged comments.

  • Almost active
    This plugin was not updated the last 901 days ago.
  • This plugin is tested with the last major release of WordPress
    Content for list item
  • Compatible with the latest major PHP release
    This plugin requieres PHP 7.4 or higher. The latest stable PHP 8.4.3 was released on 16 January 2025
  • No unfixed plugin vulnerabilities
    Content for list item

Ratings

3

Active installs

1K

Total Downloads

174K

Support Threads

0

Last updated

31 July 2022

Added

16 January 2007

Versions

7%5.15%48.23%35.2%4.42%
  • Version 2.59
  • Version 2.60
  • Version 2.65
  • Version 2.70
  • Version other

About Pagebar2

FAQ

Simply edit style.css, pagebar.css, or whatever CSS file your defintions are stored:

.pagebar {

text-align: center;

}

Changelog

2.67

2.66

2.61

2.60.1

2.60

2.59.1

2.59

2.58

2.57

2.56

2.55

2.54

2.53

2.52

*fixed: non administrators could change settings

2.51

2.50

2.22

Added Belarussian translation. Thanks to Ilya of www.fatcow.com

2.21

2.20

2.19

2.18

2.17

2.16

2.15

2.01

2p4

2p3

2p2

2p1

1.3.2

1.3.1a

1.3.1

1.3

1.2

1.1.1

1.1

1.0

How to install Pagebar2

+Manual installation
If the automatic insertion is not suitable for your blog because your theme has more than one posting loop you can add postbar manually to your blog by editing some of your themes files. Simply add the following code directly behind The Loop in your index.php and search.php:

        if (function_exists('postbar'))
                    postbar();

Of course you may want to configure postbar to your needs using the option page and by editing the pagebar.css style file.

(The code does not have to look necessarily exactly the same, this example is from the WordPress default theme.) Then you can add the multipagebar to your pages:

        if (function_exists('multipagebar'))
                    multipagebar();

You can customize the display of your multipagebar by editing the settings in the Multipagebar tab on the pagebar option page.

(The code does not have to look necessarily exactly the same, this example is from the WordPress default theme.) Then you can add the commentbar to your pages:

        if (function_exists('commentbar'))
                    commentbar();

pagebar v2.5+ introduces a new database structure for its settings. Formerly there was only one entry in “wp_options” called “pagebar”. Since there are now three different pagebars (“postbar”, “commentbar” and “multipagebar”), the options are splitted into three entries (“postbar”, “commentbar” and “multipagebar” respectively).
After installation (either through WordPress update or manually per FTP) pagebar copies the settings stored in “pagebar” to the new “postbar” entry and sets “commentbar” and “multipagebar” to inherit the settings so everything should look fine without manual interference. The “commentbar” and “multipagebar” have to be installed manually though.