AllWebMenus menu-linking code
-
I purchased AllWebMenus PRO ver 5.3 and I have configured a menu for WordPress. I have to add the menu-linking code to the header.php file in my template directory right after the <body> tag. My header.php file does not have a <body> tag. I am using the Builder theme and I am at a loss. Here is the header.php code: (where do I add the code??)
‘<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”><head profile=”http://gmpg.org/xfn/11″>
<?php do_action( ‘builder_add_title’ ); ?>
<?php if ( file_exists( get_stylesheet_directory() . ‘/images/favicon.ico’ ) ) : ?>
<link rel=”icon” type=”image/x-icon” href=”<?php bloginfo( ‘stylesheet_directory’ ); ?>/images/favicon.ico” />
<?php elseif ( file_exists( get_template_directory() . ‘/images/favicon.ico’ ) ) : ?>
<link rel=”icon” type=”image/x-icon” href=”<?php bloginfo( ‘template_directory’ ); ?>/images/favicon.ico” />
<?php endif; ?><!– The Meta Info –>
<meta http-equiv=”Content-Type” content=”<?php bloginfo( ‘html_type’ ); ?>; charset=<?php bloginfo( ‘charset’ ); ?>” />
<?php do_action( ‘builder_add_meta_data’ ); ?><!– The Stylesheets –>
<?php $layout = apply_filters( ‘builder_get_current_layout’, array() ); ?>
<?php if ( ! isset( $layout[‘disable_style’] ) || ( ‘yes’ !== $layout[‘disable_style’] ) || empty( $layout[‘extension’] ) ) : ?>
<link rel=”stylesheet” href=”<?php bloginfo( ‘template_directory’ ); ?>/css/reset.css” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”<?php bloginfo( ‘template_directory’ ); ?>/css/structure.css” type=”text/css” media=”screen” />
<?php endif; ?>
<!–[if lte IE 7]>
<link rel=”stylesheet” href=”<?php bloginfo( ‘template_directory’ ); ?>/css/lte-ie7.css” type=”text/css” media=”screen” />
<![endif]–>
<!–[if lt IE 7]>
<link rel=”stylesheet” href=”<?php bloginfo( ‘template_directory’ ); ?>/css/lt-ie7.css” type=”text/css” media=”screen” />
<script src=”<?php bloginfo( ‘template_directory’ ); ?>/js/dropdown.js” type=”text/javascript”></script>
<![endif]–>
<?php if ( isset( $layout[‘extension’] ) ) : ?>
<?php do_action( ‘builder_extension_add_stylesheet’, $layout[‘extension’] ); ?>
<?php endif; ?><!–The RSS and Pingback–>
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo( ‘name’ ); ?> RSS Feed” href=”<?php bloginfo( ‘rss2_url’ ); ?>” />
<link rel=”alternate” type=”application/atom+xml” title=”<?php bloginfo( ‘name’ ); ?> Atom Feed” href=”<?php bloginfo( ‘atom_url’ ); ?>” />
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” /><?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); // Add comment reply JavaScript if page is singular ?>
<?php wp_head(); //we need this for plugins ?>
</head>’
The topic ‘AllWebMenus menu-linking code’ is closed to new replies.