HI! I would like to show images in my category search as well, so I tryes do copy the code in the (functions.php), but it's not working, what's the 'main functions.php file' ?
I use thematc without a child theme. Do I have to make changes elswhere than functions.php ?
My functions.php looks now like this:
<?php
function childtheme_content($content) {
if (is_category()) {
$content= 'full';}
return $content;
}
add_filter('thematic_content', 'childtheme_content');
?>
function childtheme_content($content) {
if (is_category()) {
$content= 'full';}
return $content;
}
add_filter('thematic_content', 'childtheme_content');
//
// Custom Child Theme Functions
//
// I've included a "commented out" sample function below that'll add a home link to your menu
// More ideas can be found on "A Guide To Customizing The Thematic Theme Framework"
// http://themeshaper.com/thematic-for-wordpress/guide-customizing-thematic-theme-framework/
// Adds a home link to your menu
// http://codex.wordpress.org/Template_Tags/wp_page_menu
//function childtheme_menu_args($args) {
// $args = array(
// 'show_home' => 'Home',
// 'sort_column' => 'menu_order',
// 'menu_class' => 'menu',
// 'echo' => true
// );
// return $args;
//}
//add_filter('wp_page_menu_args','childtheme_menu_args');