Changeset 61994
- Timestamp:
- 03/12/2026 07:29:05 PM (23 hours ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
wp-admin/admin.php (modified) (1 diff)
-
wp-includes/block-editor.php (modified) (1 diff)
-
wp-includes/deprecated.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/admin.php
r60923 r61994 396 396 if ( 'page' === $typenow ) { 397 397 if ( 'post-new.php' === $pagenow ) { 398 /** This action is documented in wp-admin/admin.php */ 398 399 do_action( 'load-page-new.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 399 400 } elseif ( 'post.php' === $pagenow ) { 401 /** This action is documented in wp-admin/admin.php */ 400 402 do_action( 'load-page.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 401 403 } 402 404 } elseif ( 'edit-tags.php' === $pagenow ) { 403 405 if ( 'category' === $taxnow ) { 406 /** This action is documented in wp-admin/admin.php */ 404 407 do_action( 'load-categories.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 405 408 } elseif ( 'link_category' === $taxnow ) { 409 /** This action is documented in wp-admin/admin.php */ 406 410 do_action( 'load-edit-link-categories.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 407 411 } 408 412 } elseif ( 'term.php' === $pagenow ) { 413 /** This action is documented in wp-admin/admin.php */ 409 414 do_action( 'load-edit-tags.php' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores 410 415 } -
trunk/src/wp-includes/block-editor.php
r61678 r61994 339 339 */ 340 340 add_filter( 'should_load_block_editor_scripts_and_styles', '__return_false' ); 341 /** This action is documented in wp-includes/script-loader.php */ 341 342 do_action( 'enqueue_block_assets' ); 342 343 remove_filter( 'should_load_block_editor_scripts_and_styles', '__return_false' ); -
trunk/src/wp-includes/deprecated.php
r61946 r61994 151 151 $string = '<a href="'.get_permalink($post->ID).'">'.$previous; 152 152 if ( 'yes' == $title ) 153 /** This filter is documented in wp-includes/post-template.php */ 153 154 $string .= apply_filters('the_title', $post->post_title, $post->ID); 154 155 $string .= '</a>'; … … 186 187 $string = '<a href="'.get_permalink($post->ID).'">'.$next; 187 188 if ( 'yes' == $title ) 189 /** This filter is documented in wp-includes/post-template.php */ 188 190 $string .= apply_filters('the_title', $post->post_title, $post->ID); 189 191 $string .= '</a>'; … … 1061 1063 1062 1064 // Display the category name. 1065 /** This filter is documented in wp-includes/bookmark-template.php */ 1063 1066 echo ' <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n"; 1064 1067 // Call get_links() with all the appropriate params. … … 2703 2706 $title = str_replace('%title', $post->post_title, $title); 2704 2707 $title = str_replace('%date', $date, $title); 2708 /** This filter is documented in wp-includes/post-template.php */ 2705 2709 $title = apply_filters('the_title', $title, $post->ID); 2706 2710 … … 2780 2784 $title = str_replace('%title', $post->post_title, $title); 2781 2785 $title = str_replace('%date', $date, $title); 2786 /** This filter is documented in wp-includes/post-template.php */ 2782 2787 $title = apply_filters('the_title', $title, $post->ID); 2783 2788
Note: See TracChangeset
for help on using the changeset viewer.