Home › Forums › Theme support › Prestige theme › Reply To: Prestige theme
It’s nearly the same code, you can add it like the last one at the end of the functions.php file:
function filter_portfolio_title( $in ) {
global $post;
if( get_post_type() == 'portfolio' && ! is_singular( 'portfolio' ) ) {
$in = "<a class='portfolio_entry_link' href='".get_permalink()."'>$in</a>";
}
return $in;
}
add_filter( 'the_title' , 'filter_portfolio_title' );
Then please go to WordPress admin -> Appearance -> Theme Options -> Extra CSS Content and add this css code:
a.portfolio_entry_link {
color: inherit !important;
}