Ez a bővítmény nem lett tesztelve a WordPress legutóbbi 3 fő kiadásával. Lehetséges, hogy már nincs karbantartva, frissítve és a használata gondot jelenthet a frissebb WordPress verziókkal.

WP Bootstrap Menu

Leírás

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.

Képernyőmentések

  • Wordpress Navmenu
  • Output Bootstrap style
  • Submenu

Telepítés

  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>

Vélemények

5 (az összes) vélemény olvasása

Közreműködők és fejlesztők

“WP Bootstrap Menu” egy nyílt forráskódú szoftver. A bővítményhez a következő személyek járultak hozzá:

Közreműködők

“WP Bootstrap Menu” fordítása a saját nyelvünkre.

Érdekeltek vagyunk a fejlesztésben?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Változási napló

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.