I am currently trying to change der Avada portfolio grid title markup. Right now it is wrapped in <h2>
tags, but I want it to be a plain <a>
tag. I found the fusion_portfolio_grid_title
filter, but I really dont get it to work. What I tried:
add_filter( 'fusion_portfolio_grid_title', 'change_grid_title');
function change_grid_title() {
$post_title = '<a>' $post_title '</a>';
return = $post_title;
};
Can somebody help out?
question from:https://stackoverflow.com/questions/66051188/change-avada-fusion-portfolio-grid-title-html-markup