By 4 steps I make the menu at top in bbPress forum pages 1. Create a Widget Area. 2. Create a Menu for bbPress forum 3. Place the widget area by Hook 4. Style the Menu 1. Creating a Widget Area Add the php code in functions.php file
1 2 3 4 5 |
genesis_register_sidebar( array( 'id' => 'forum-menu', 'name' => __( 'Forum Menu Widget', 'busitech' ), 'description' => __( 'This widget area is for forum menu.', 'busitech' ), ) ); |
2. Creating a Menu for bbPress… Continue Reading