Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function sh_bbp_menu() {
  2.  
  3. $forums_menu = bbp_get_global_post_field( 'forum_menu', 'edit' );
  4. //var_dump($forums_menu); ?>
  5.  
  6. <hr />
  7.  
  8. <strong class="label"><?php esc_html_e( 'Add to Menu:', 'bbpress' ); ?></strong>
  9. <label class="screen-reader-text" for="forum_menu"><?php esc_html_e( 'Forums Menu', 'bbpress' ); ?></label>
  10. <input name="forum_menu" type="checkbox" id="forum_menu" value="<?php echo esc_attr( $forums_menu ); ?>" />
  11. <?php
  12. }
  13. add_action( 'bbp_forum_metabox', 'sh_bbp_menu' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement