nicoleagreen
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
If I remember correctly, I did not have the main wordpress head and foot functions being called.
<?php ... /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?> </head>
<?php /* Always have wp_footer() just before the closing </body> * tag of your theme, or you will break many plugins, which * generally use this hook to reference JavaScript files. */ wp_footer(); ?>
Thanks sevensparks. You were spot on!
@rsandilands did you ever figure out the issue?
Can’t get the option menu to actually ‘go’ to a link. Pardon the dust: https://dev.nicoleagreen.com/sample-page
Any help would be amazingly wonderful at this point.
Forum: Fixing WordPress
In reply to: The Home Button Does Not DisplayThis may not be the best, but it seems to work. From the Theme Appearance Editor, you will need to edit the header.php.
Find the line (Towards the bottom):
<em><div id="nav" class="fix"><ul class="clearfix"></em>
to
<em>$frontpage_id = get_option('page_on_front');</em>
Replace with<em><div id="nav" class="fix"> <ul class="clearfix"</em> <?php if (is_page($home)){?> <li class="page_item "><a class="home" href="<?php echo get_settings('home'); ?>/"title="Home">Home</a></li> <?php } else { ?> <li class="current_page_item "><a class="home" href="<?php echo get_settings('home'); ?>/"title="Home">Home</a></li> <?php } <em>$frontpage_id = get_option('page_on_front');</em>
Viewing 4 replies - 1 through 4 (of 4 total)