apply_filters( 'default_title', string $post_title, WP_Post $post )

Filters the default post title initially used in the “Write Post” form.


Parameters

$post_title string
Default post title.
$post WP_Post
Post object.

Top ↑

Source

File: wp-admin/includes/post.php. View all references

$post->post_title = (string) apply_filters( 'default_title', $post_title, $post );


Top ↑

Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes

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