Advertisement
fauzanjeg

Create Shortcode for Main Menu

Sep 13th, 2021
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. /* Create Shortcode for Main Menu */
  2. function main_menu_shortcode() {
  3.     ?>
  4.     <div class="jeg_nav_item jeg_main_menu_wrapper">
  5.     <?php
  6.         jnews_menu()->main_navigation();
  7.         do_action('jnews_main_menu');
  8.     ?>
  9.     </div>
  10.     <?php
  11. }
  12. add_shortcode( 'main_menu', 'main_menu_shortcode' ); /* Shortcode Name, Functions Name || Use [main_menu] */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement