ThemeShaper Forums » Thematic

Links don't work i summary

(4 posts)
  • Started 14 years ago by prosit
  • Latest reply from Chris
  • This topic is not resolved
  1. prosit
    Member

    I am about to make a blog with lots of categories called ("http://blogg.prositweb.no")

    Okay, this is probably a beginners question, but I haven't experienced this problem in other themes for WP:

    In the sidebar, when I click on a category, the summaries of the categories posts shows up, but the links inside my text does not work. These links I have tagged in manually using HTML-mode in the wpEditor (or what it is called). It all works fine if I click on the header for the post, to watch the permalink, but I want my links to work in the summaries too. How can I do this?

    Posted 14 years ago #
  2. because in the category template, Thematic uses the_excerpt and not the_content.

    Posted 14 years ago #
  3. prosit
    Member

    If I replace the_content with the_exerpt , then it will work?

    Posted 14 years ago #
  4. Hi,

    yes .. try this code in your child theme's functions.php.

    function childtheme_content($content) {
    	if (is_category()) {
    		$content= 'full';}
    	return $content;
    }
    add_filter('thematic_content', 'childtheme_content');

    Chris

    Posted 14 years ago #

RSS feed for this topic

Reply

You must log in to post.