srikat

Untitled

May 4th, 2016
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. function custom_do_header() {
  2.  
  3. if ( wp_is_mobile() ) {
  4.  
  5. echo '<a href="' . get_bloginfo( 'url' ) . '"><img class="aligncenter" src="http://cl.ly/image/3v3Q2b330y2z/logo.gif" /></a>';
  6.  
  7. // wp_nav_menu(
  8. // array(
  9. // 'menu' => 'Contributors',
  10. // 'container' => 'nav',
  11. // 'menu_class' => 'genesis-nav-menu'
  12. // )
  13. // );
  14.  
  15. genesis_nav_menu( array(
  16. 'theme_location' => 'header',
  17. 'menu_class' => 'menu genesis-nav-menu',
  18. ) );
  19.  
  20. do_action( 'genesis_site_description' );
  21.  
  22. }
  23.  
  24. else {
  25.  
  26. $divider_html = '<a href="' . get_bloginfo( 'url' ) . '"><img src="http://cl.ly/image/3v3Q2b330y2z/logo.gif" /></a>';
  27.  
  28. wp_nav_menu(
  29. array(
  30. // 'menu' => 'Contributors',
  31. 'theme_location' => 'header',
  32. 'divider_html' => $divider_html,
  33. 'container' => 'nav',
  34. 'menu_class' => 'genesis-nav-menu'
  35. )
  36. );
  37.  
  38. do_action( 'genesis_site_description' );
  39.  
  40. }
  41.  
  42. }
Advertisement
Add Comment
Please, Sign In to add comment