bradgillap
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Toolbox] Add category name to Toolbox post header / entry-metato add the authors name you can just tack in
<?php the_author() ?>Forum: Plugins
In reply to: [Toolbox] Add category name to Toolbox post header / entry-metaI got it in kind of a round about way using wordpress built in functions rather than toolbox.
Look at content.php and find the first entry-meta div
<div class="entry-meta"> <?php toolbox_posted_on(); ?>To get the categories you can add this to the line.
<div class="entry-meta"> <?php toolbox_posted_on(); ?> from category <?php the_category(', '); ?> </div><!-- .entry-meta -->Forum: Plugins
In reply to: [Toolbox] Add category name to Toolbox post header / entry-metaI’m looking for this as well.
Found my answer from another post.
Open the content.php and change it fro this
<?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?>to this
<?php if ( is_search() || is_home() || is_front_page() ) : // Only display Excerpts for Search and home page ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?>
Viewing 4 replies - 1 through 4 (of 4 total)