wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php:
WP_REST_Menu_Items_Controller::prepare_item_for_response()
|
Prepares a single post output for response.
|
wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php:
WP_REST_Templates_Controller::prepare_item_for_response()
|
Prepare a single template output for response
|
wp-includes/customize/class-wp-customize-nav-menu-item-setting.php:
WP_Customize_Nav_Menu_Item_Setting::get_original_title()
|
Get original title.
|
wp-admin/includes/class-wp-posts-list-table.php:
WP_Posts_List_Table::column_title()
|
Handles the title column output.
|
wp-admin/includes/class-walker-nav-menu-checklist.php:
Walker_Nav_Menu_Checklist::start_el()
|
Start the element output.
|
wp-includes/general-template.php:
wp_get_archives()
|
Display archive links based on type and format.
|
wp-includes/deprecated.php:
get_boundary_post_rel_link()
|
Get boundary post relational link.
|
wp-includes/deprecated.php:
get_parent_post_rel_link()
|
Get parent post relational link.
|
wp-includes/deprecated.php:
previous_post()
|
Prints a link to the previous post.
|
wp-includes/deprecated.php:
next_post()
|
Prints link to the next post.
|
wp-includes/link-template.php:
get_adjacent_post_link()
|
Retrieves the adjacent post link.
|
wp-includes/class-walker-nav-menu.php:
Walker_Nav_Menu::start_el()
|
Starts the element output.
|
wp-includes/class-walker-page.php:
Walker_Page::start_el()
|
Outputs the beginning of the current element in the tree.
|
wp-includes/post-template.php:
get_the_title()
|
Retrieves the post title.
|
wp-includes/nav-menu.php:
wp_setup_nav_menu_item()
|
Decorates a menu item object with the shared navigation menu item properties.
|
wp-includes/comment.php:
do_trackbacks()
|
Performs trackbacks.
|
Suppressing the title in templates for all posts in the “blurb” category:
Note the addition of
null
as the default value for the$id
variable. This is because some instances of the usage of this filter did not supply a post ID. This inconsistency was introduced in version 3.1, and fixed in version 3.3 (see ticket #16688). If you want to be compatible with these older versions, you need to supply the default value as above, or you will end up with a PHP warning stating that you are missing an argument. If you don’t need to support 3.1 or 3.2, it isn’t necessary to specify a default value for$id
.