Hi guys
im trying to do a filter on my content but this function that i made doesnt seem to work. someone can help me? thanks in advance.
function thematic_content_new() {
if (is_category('shop')) { ?>
<div class="view view-first"><img class="alignleft" title="<?php echo get_the_title(); ?>" src="<?php echo get_post_meta(get_the_ID(), 'image-shop', true); ?>" /></div>
<div class="price"><?php echo get_post_meta(get_the_ID(), 'price-shop', true); ?></div>
<div class="description"><?php echo get_post_meta(get_the_ID(), 'hover-shop', true); ?></div>
<div class="buttons"><?php echo get_post_meta(get_the_ID(), 'buybuttons-shop', true); ?></div>
<?php
}
}
add_filter('thematic_content','thematic_content_new');