Removing Tags from Bottom of Post
-
I want to stop my tags from showing up at the bottom of my post without removing them from the post. (www.bestoffates.com) I’m using the Suffusion theme, and have found the tag place in the php:
<?php /** * Used when you are looking at all posts with a tag. * * @package Suffusion * @subpackage Templates */ global $options; foreach ($options as $value) { if (get_option($value['id']) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option($value['id']); } } get_header(); ?> <div id="main-col"> <?php suffusion_before_begin_content(); ?> <div id="content"> <?php if ($suf_tag_excerpt == 'list') { include_once(TEMPLATEPATH . '/layouts/layout-list.php'); } else if ($suf_tag_excerpt == 'tiles') { suffusion_after_begin_content(); include_once(TEMPLATEPATH . '/layouts/layout-tiles.php'); } else { suffusion_after_begin_content(); include_once(TEMPLATEPATH . '/layouts/layout-blog.php'); } ?> </div><!-- content --> </div><!-- main col --> <?php get_footer(); ?>
/code
I can’t figure out which of the lines of code I need to delete without accidentally deleting the tags themselves.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Removing Tags from Bottom of Post’ is closed to new replies.