Hello Forum! I have a somehow strange problem… I just wanted to change the appearance of the next & previous post-links. I tried for some time now bit it simply is not working…
I looked up the source code and tryed to build a filter. I'm not that good at filtering php stuff so here is my code:
function childtheme_prev_post_link() {
$args = array ('format' => '%link',
'link' => '<span class="meta-nav">MMM</span> %title',
'in_same_cat' => FALSE,
'excluded_categories' => '');
$args = apply_filters('childtheme_prev_post_link_args', $args );
previous_post_link($args['format'], $args['link'], $args['in_same_cat'], $args['excluded_categories']);
} // end thematic_previous_post_link
add_filter('thematic_previous_post_link','childtheme_prev_post_link');
I don't even know if I did that right… The three MMM are just for testing purposes. I just wanted to change or remove the basic « symbol.
Help would be very much appreciated!