Connor Crosby
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP 3 Menus not ShowingI changed it this on the functions.php page:
register_nav_menus( array( 'menu_top' => __( 'Top Menu', 'cctheme' ), 'menu_bottom' => __( 'Bottom Menu', 'cctheme' ), ) );
On the header.php and footer.php (except menu and menu_id are changed) I have:
wp_nav_menu( array( 'menu' =>'menu_top', 'container'=>'', 'depth' => 1, 'menu_id' => 'menuTop' ) );
And it displays my menus however they are the same links. It seems like they are referring to the same menu. When I added a link to my top menu, the bottom menu shows the same thing. And I know they are both set to different ones.
Forum: Themes and Templates
In reply to: Different Header for Single and PageOkay, that is what I was sort of thinking, thank you!
And I apologize for the duplicate post.
Forum: Themes and Templates
In reply to: Different Header for Single and Pagebump
Forum: Fixing WordPress
In reply to: Latest Post separated by ad then more postsPerfect, thanks!
Forum: Fixing WordPress
In reply to: Latest Post separated by ad then more postsWell I wanted to use google adsense. If I were to use featured images, wouldnt I need to change it with each post?
Forum: Fixing WordPress
In reply to: Twitter-Like Time AgoThe only problem is that I am kinda new to PHP so I am not exactly sure how I can accomplish that. Thank you.
Forum: Fixing WordPress
In reply to: Twitter-Like Time AgoThanks but I am looking to create something myself, not a plugin. That plugin only displays how many — ago and doesn’t show the actual date after a certain time.
Forum: Themes and Templates
In reply to: IF Author Contact Field Entered, Display Link – How?Excellent, I will try that out.
Forum: Fixing WordPress
In reply to: Login and Log out LinksI actually was doing something like that but I wasn’t sure how to show one if logged in and the other if logged out.
Forum: Fixing WordPress
In reply to: Login and Log out LinksWow… That is all I can say.
I knew there was a really simple solution! Thank you so much, you saved me!
Forum: Themes and Templates
In reply to: If Page 1 then show DIV – how?Awesome, thank you so much!
Forum: Themes and Templates
In reply to: Im looking for a theme….Try searching for it or browsing for a theme here: https://themeforest.net
Forum: Themes and Templates
In reply to: CSS and HTML helpNo problem, and by the way, ignore the
and <p>. I am not sure why those are showing up.Forum: Themes and Templates
In reply to: If Page 1 then show DIV – how?when I type that, it shows this error:
Parse error: syntax error, unexpected $end in …/wordpress/wp-content/themes/mousejunkies/home.php on line 36
line 36 is the last line of code
Here is what I have as my code for home.php:
<?php get_header(); ?><div id="wrap">
<div id="content"><?php if( !is_paged() ) { ?>
<div class="page" id="homeTop">
HERE IS THE DIV
</div>
</php } ?><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h1 class="postTitle">"><?php the_title(); ?></h1>
<small class="postMeta">On <?php the_time('F jS, Y'); ?> in <?php the_category(', '); ?></small>
<p class="postExcerpt"><?php the_excerpt(); ?></p>
<p class="postMore">">Continue Reading</p>
</div> <!-- END POST --><?php endwhile; ?>
<?php wp_pagenavi(); ?>
<?php else : ?>
<h1>Nothing Found</h1>
<p>Sorry, but what you are looking for has not been found, try searching for it.</p>
<?php endif; ?></div> <!-- END CONTENT -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Themes and Templates
In reply to: CSS and HTML helpSo your css file may look like this:
<br /> h2 {<br /> font-family: Georgia, serif;<br /> font-size: 32px;<br /> font-weight: bold;<br /> }</p>
<p>.top_meta {
font-style: italic;
font-size: 14px;
font-family: Arial, sans-serif;
}</p><p>.entry {<br /> font-family: Arial, sans-serif;<br /> font-size: 16px;<br /> }</p>
<p>.bottom_meta {
font-family: Arial, sans-serif;
font-size: 14px;
font-style: italic;
}`