• Hmmm. I know how to change the text that displays – like “this is a protect post…” but I don’t know how to change the title. I wouldn’t be suprised if before I had upgraded I had made the titles of all my protected posts “Protected: Title” but now, I’d just like for it to be “Title.” Does anyone know where you can change this? Thank you in advance for your help.

Viewing 1 replies (of 1 total)
  • template-functions-post.php
    lines 31-39
    function get_the_title($id = 0) {
    $post = &get_post($id);

    $title = $post->post_title;
    if ( !empty($post->post_password) )
    $title = sprintf(__('Protected: %s'), $title);

    return $title;
    }

    Above applies to WP2.0

Viewing 1 replies (of 1 total)

The topic ‘title of protected posts’ is closed to new replies.