1.0
BookMaster
13. July 2009 · Author: Dale Crum
0 Comments

BookMaster

BookMaster is our answer to what we feel is an odd issue with the WordPress wp_list_bookmarks tag. For those that have exercised the use of wp_list_bookmarks, you are well aware that it is not possible to use the bookmark category title alone without calling on the bookmarks themselves. This is, of course, with the exception of excluding all bookmark categories and this can be painful if there are a lot of them.

With the introduction of BookMaster, we have solved this small issue. The concept is to allow for the use of the bookmark category title anywhere within a page or post a template without being forced to list any of the bookmarks themselves. This presents the administrator with the option to alter the bookmark title from the bookmarks menu while simultaneously changing the bookmark title in the code itself and thusly killing two birds with one stone . Using this plugin will prevent the unnecessary need to alter core files and allow you to carry the plugin with you as WordPress continues to develop.

In the example below we are displaying only the title of bookmark category 3 within an h1 style tag. We can now alter this information from the bookmarks admin panel simply by changing the bookmark category name. Displaying directly below the title the bookmarks from Category 7 will print in an unordered list.

While not the most effective use of this plugin the example utilized below is for educational purposes.

Example

<php if (have_posts()) : while (have_posts()) : the_post();?>
 <h1><php wp_list_bookmaster('category=3'); ?></h1>
 <div id="links-container">
  <ul><php wp_list_bookmarks('title_li=&category=3') ?></ul>
 </div>
<php endwhile; endif; ?>

Installation

  1. Download the plugin and expand it.
  2. Copy the bookmaster folder into your plugins folder ( wp-content/plugins ).
  3. Log-in to the WordPress administration panel and visit the Plugins page.
  4. Locate the BookMaster plugin and click on the activate link.
  5. Insert the example code wherever you would like to show a bookmark category title.

Trackbacks

  1. Tweets that mention Plugins | Doc4 -- Topsy.com
  2. [ Plugin ] BookMaster - WordPress Tavern Forum
  3. [ Plugin ] BookMaster - WordPress Forums

Leave A Comment

Please wrap any code within the <code> tag to display properly

I've been thinking a lot lately about stability versus spontaneity, freedom versus structure. Sometimes I find myself saying things like, "You can't grow unless you try new things,...

As I sit here at my desk with yet another article deadline staring me in the face, I can't help but wonder if I'm the only one who is plagued by the appealing face of procrastination....

In the advertising business we all aspire to do something big, something memorable, something great that has never been done before; unfortunately not very many of us get the opportunity...

I am under the personal belief that post titles should be short, sweet and precise enough to get the point across without sounding like an awkward newspaper headline. Sadly not all...

If you're involved in the world of design, whether it is by trade or business necessity, then you are probably familiar with the term "spec design", also known as "crowdsourcing". The...