2 Ways To Unlink or Remove Archive Post Title Permalink

If you want to unlink your archive page or home page titles, the solution will depend on which theme you’re using.

In this post, i’ll provide 3 solutions which work on any Genesis child theme and the Twenty Fourteen default theme for WordPress which you can apply to most themes.

Twenty Fourteen

You’ll find this code in the content.php file around line 24 which you’ll also find in other content files for different post formats.

You’ll need to change this code:


To this:

Genesis Post Title Link

Add to your child themes functions file.

add_filter( 'genesis_link_post_title', 'unlink_post_title' );
function unlink_post_title() {
    return false;
}

Related Tutorials

Join 5000+ Followers

Get The Latest Free & Premium Tutorials Delivered The Second They’re Published.