Last active
July 13, 2017 13:10
-
-
Save rachelmccollin/679562c73f73b924ba330950c42f8dca to your computer and use it in GitHub Desktop.
WPMU DEV Automated Navigation Menus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$args = array( | |
'depth' => 2 | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$args = array( | |
'depth' => 2, | |
'title_li' => '<h3>' . __( 'Menu', 'wpmu' ) . '</h3>', | |
'sort_column' => 'menu-order' | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: WPMU DEV Automated Navigation Menus | |
* Plugin URI: https://github.com/rachelmccollin/wpmudev-automated-menus | |
* Description: Plugin to accompnay WPMU DEV post on automating navigation and section menus | |
* Version: 1.0 | |
* Author: Rachel McCollin | |
* Author URI: http://rachelmccollin.co.uk | |
* | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Theme Name: WPMU DEV Automated Navigation Menus | |
Theme URI: https://github.com/rachelmccollin/wpmudev-automated-menus | |
Description: Theme to support WPMU DEV post on automating navigation and section menus. Child theme for the Twenty Seventeen theme. | |
Author: Rachel McCollin | |
Author URI: http://rachelmccollin.co.uk/ | |
Template: twentyseventeen | |
Version: 1.0 | |
*/ | |
@import url("../twentyseventeen/style.css"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wpmu_list_pages() { | |
$args = array( | |
'depth' => 2 | |
); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wp_list_pages( $args ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wpmu_list_pages() { | |
$args = array( | |
'depth' => 2 | |
); | |
wp_list_pages( $args ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment