I’m working on SEO, and each heading of the magazine appears to be an H1 or H2, which negatively impacts my rankings.
I do not do code. Could you please supply me with an easy way to make them all paragraph size?
You can view a page; I’ve included links at the bottom of every page in the website. I have hundreds of pages.
Here is a sample. https://photomagx.com/featured-articles-travel-photography/maine-lighthouses-milky-way-photography/
Your quick response would be appreciated.
Thank you.
Hey extraeyes,
Thank you for the inquiry.
You can add this filter in the functions.php file to adjust the title tag of the magazine element:
function avf_customize_heading_settings_mod( $args, $class, $extra_args ) {
$args['heading'] = 'p';
return $args;
}
add_filter( 'avf_customize_heading_settings', 'avf_customize_heading_settings_mod', 10, 3 );
Best regards,
Ismael
I advised I do not do code. I do not know what a function.php file is?
I only work in the front end.
Pam