• knate1340

    (@knate1340)


    How can I remove the page title from my home page? I have looked through every setting!

    Thanks!

    -Nathan

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • stevie2012

    (@stevie2012)

    If using css

    In your css include this and all titles from the POSTs, PAGEs 404s etc should be gone.

    Remove the titles from all PAGE and POST

    .post-title {display:none;}

    Remove the titles from all PAGE only and leave POSTs as is.
    .page .post-title {display:none;}

    Remove the titles from all POSTs and leave PAGEs as is.
    .single .post-title {display:none;}

    Remove the title from a specific POST and leave other POSTs and PAGEs as is.
    .postid-451 .post-title {display:none;}

    Where similar “postid-nnn” can be found looking inside the source when you see the page inside the <body> tag or when you hover over the title of the post in the admin
    like below.

    https://yourdomain.com/wp-admin/post.php?post=451&action=edit

    Alternatively, you can edit the following php files and edit/delete/comment out each title related places, though I wouldn’t recommend this to you.

    404.php
    content.php
    content-archive.php
    content-archive-double.php
    content-archive-page.php
    content-archive-rows.php
    content-archive-rows-excerpt.php
    content-attachment.php
    content-page.php

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Page Title from Pages’ is closed to new replies.