Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created February 1, 2012 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1717521 to your computer and use it in GitHub Desktop.
Save billerickson/1717521 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'genesis_nav_items', 'be_follow_icons', 10, 2 );
add_filter( 'wp_nav_menu_items', 'be_follow_icons', 10, 2 );
/**
* Follow Icons in Menu
* @author Bill Erickson
* @link http://www.billerickson.net/genesis-wordpress-nav-menu-content/
*
* @param string $menu
* @param array $args
* @return string
*/
function be_follow_icons($menu, $args) {
if ( 'primary' !== $args['theme_location'] )
return $menu;
$follow = '<li id="follow">Follow: RSS and Twitter</li>';
return $menu . $follow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment