Legion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: calling a specific headerThat generally pointed me in the right track! Thanks, I got it working.
I ended up taking the code out of the header and creating seperate headers that are called from the singles.php page like such:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category(‘2’) ) {
include “boe_header.php”;
} elseif ( in_category(‘3’)) {
// ironquest category
include “iron_header.php”;
} elseif ( in_category(‘9’)) {
// ironquest category
include “iron_header.php”;
} else {
include “header.php”;
}
?>Again, thanks for the help.
Forum: Fixing WordPress
In reply to: calling a specific headerThanks! Gonna play around with that a bit and see what I can make happen.
Forum: Fixing WordPress
In reply to: the_contentThat was too easy. Do I feel like an idjit or what? I didn’t know you had to put the <!–more–> into the actual post content. thanks for the help, that’s what I needed.
Forum: Fixing WordPress
In reply to: the_contentThanks, I’ve been looking around in there for the last 3 hours and can’t seem to figure out how to do it. I haven’t found a clear description of how to implement quicktags. I wouldn’t have asked this question without searching the codex and also all of the forums here.
Forum: Fixing WordPress
In reply to: the_contentOkay, apparently I was fumbling around with something I shouldn’t. What is this <!– more –> quicktag? I can’t seem to find instructions anywhere on how to use it.