Plugin info

Total downloads: 13,068
Active installs: 200
Total reviews: 5
Average rating: 4.2
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 5/16/2013 (4659 days ago)
Added to WordPress: 1/13/2013 (13 years old)
Minimum WordPress version: 3.0.1
Tested up to WordPress version: 3.4.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4659 days ago • 5 reviews

22/100

Is WP Bootstrap Menu abandoned?

Possibly abandoned (last update 4659 days ago).

Compatibility

Requires WordPress: 3.0.1
Tested up to: 3.4.2
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

mhcode-wp-bootstrap-nav
Rating 0.0/5 (0 reviews)Active installs 10

Description

WP Bootstrap Menu convert wordpress nav menu style to Twitter Bootstrap [http://twitter.github.com/bootstrap/] navmenu style.
You can join to WP Bootstrap Menu developing [https://github.com/sajjadrad/wp-bootstrap-navmenu] .
Compatible with Bootstrap 2.2.2 and support sub menu.

Installation

  1. Upload wp-bootstrap-navmenu.php to the /wp-content/plugins/wp-bootstrap-navmenu/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Style your bootstrap navmenu and place <?php echo getNavMenu( MENU NAME ); ?> in your templates to get menu list.
  4. To change options for dropdown item,you can set option argument when calling getNavMenu function.Dropdown has two options,”hover” and “click”.In “click” option,dropdown items link address set to # and in “hover” option full address used.The default option set to “click”.

Example:

    <div class="navbar">
        <div class="navbar-inner">  
            <div class="container">
                <ul class="nav">
                    <?php if (function_exists('getNavMenu')): ?>
                        <?php echo getNavMenu('mainmenu'); ?>
                    <?php endif; ?>
                </ul>
            </div>
        </div>
    </div>

or:

    <div class="navbar">
        <div class="navbar-inner">  
            <div class="container">
                <ul class="nav">
                    <?php if (function_exists('getNavMenu')): ?>
                        <?php echo getNavMenu('mainmenu','hover'); ?>
                    <?php endif; ?>
                </ul>
            </div>
        </div>
    </div>

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. <strong>Wordpress Navmenu</strong>

    Wordpress Navmenu

  2. <strong>Output Bootstrap style</strong>

    Output Bootstrap style

  3. <strong>Submenu</strong>

    Submenu

Changelog

0.4.7

  • First release.

0.4.8

  • Fix Page title loading in link tag.
  • Fix showing last parent item.

1.0.4

  • Sub menu supported.
  • Last item showing fixed.

1.0.5

  • Dropdown hover problem fixed.

1.1.0

  • Hover or click options for Dropdown items added.

1.1.1

  • Active class added to active item.