• First time WordPress user here. Wondering why all of my pages are listed as (no title). I would like to understand how to add them back. I attempted to individually go in and change them, but that does NOT work nor save.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    We cannot see your edit pages. Please post a screenshot of what you’re seeing. (upload it to imgur.com and put a link here)

    When I look at your site, things seem to be OK from the outside.

    For anyone who is doing theme or plugin dev and runs into this issue, I discovered I had registered an empty callback function on the the_title filter which was catching every title and returning null. Expanding the callback along these lines prevented it from unsetting every title until I had a chance to build the callback out properly:

    function setTitle($title)
    {
        return $title;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pages Listed as (No Title)’ is closed to new replies.