apply_filters( ‘protected_title_format’, string $prepend, WP_Post $post )

Filters the text prepended to the post title for protected posts.

Description

The filter is only applied on the front end.

Parameters

$prependstring
Text displayed before the post title.
Default ‘Protected: %s’.
$postWP_Post
Current post object.

Source

$protected_title_format = apply_filters( 'protected_title_format', $prepend, $post );

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

  1. Skip to note 2 content

    Example migrated from Codex:

    Remove protected prefix from post titles

    add_filter( 'protected_title_format', 'spi_remove_protected_protected_from_titles' );
    
    function spi_remove_protected_protected_from_titles( $format, $post ) {
        return '%s';
    }

You must log in before being able to contribute a note or feedback.