Ticket #57069: 57069.9.patch
File 57069.9.patch, 2.8 KB (added by , 2 years ago) |
---|
-
wp-content/themes/twentyseventeen/inc/template-tags.php
124 124 125 125 /** 126 126 * Display a front page section. 127 * 128 * @global WP_Post $post Global post object. 127 129 * 128 130 * @param WP_Customize_Partial $partial Partial associated with a selective refresh request. 129 131 * @param int $id Front page section to display. -
wp-content/themes/twentythirteen/functions.php
489 489 * Display navigation to next/previous post when applicable. 490 490 * 491 491 * @since Twenty Thirteen 1.0 492 * 493 * @global WP_Post $post Global post object. 494 * 492 495 */ 493 496 function twentythirteen_post_nav() { 494 497 global $post; -
wp-content/themes/twentytwelve/functions.php
428 428 * Used as a callback by wp_list_comments() for displaying the comments. 429 429 * 430 430 * @since Twenty Twelve 1.0 431 * 432 * @global WP_Post $post Global post object. 433 * 431 434 */ 432 435 function twentytwelve_comment( $comment, $args, $depth ) { 433 436 $GLOBALS['comment'] = $comment; -
wp-content/themes/twentytwenty/inc/template-tags.php
307 307 * Use this filter to hide post tags. 308 308 * 309 309 * @since Twenty Twenty 1.0 310 * 311 * @global WP_Post $post Global post object. 310 312 * 311 313 * @param array $args { 312 314 * @type string $tags … … 650 652 * Adds conditional body classes. 651 653 * 652 654 * @since Twenty Twenty 1.0 655 * 656 * @global WP_Post $post Global post object. 653 657 * 654 658 * @param array $classes Classes added to the body tag. 655 659 * @return array Classes added to the body tag. -
wp-includes/blocks/comments.php
16 16 * the block is in legacy mode. If not, the HTML generated in the editor is 17 17 * returned instead. 18 18 * 19 * @global WP_Post $post Global post object. 20 * 19 21 * @param array $attributes Block attributes. 20 22 * @param string $content Block default content. 21 23 * @param WP_Block $block Block instance.