From 106404bcbd2e8c19947b64691dd2dbadf0f02a47 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 22 Aug 2023 12:30:29 +0000 Subject: [PATCH] Posts, Post Types: Remove redundant function calls in `get_body_class()`. As part of a previous change to add support for post type templates, the `$wp_query->get_queried_object_id()` method ended up being called twice, in both the `is_singular()` and `is_page()` conditional branches. The `get_post()` function call was also unnecessary, as `$wp_query->get_queried_object()` is already called in the `is_singular()` branch above, which includes the `is_page()` branch too. This commit removes the redundant calls. The first `$wp_query->get_queried_object_id()` call is removed as well, since the post ID is already available via `$wp_query->get_queried_object()`. Follow-up to [10485], [10877], [12877], [13032], [21597], [38951]. Props mattkeys, spacedmonkey, oglekler. Fixes #43661. Built from https://develop.svn.wordpress.org/trunk@56424 git-svn-id: http://core.svn.wordpress.org/trunk@55936 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post-template.php | 11 +++-------- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index ceedfa4806..f6635fdb4d 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -670,8 +670,8 @@ function get_body_class( $css_class = '' ) { } if ( is_singular() ) { - $post_id = $wp_query->get_queried_object_id(); $post = $wp_query->get_queried_object(); + $post_id = $post->ID; $post_type = $post->post_type; if ( is_page_template() ) { @@ -714,16 +714,11 @@ function get_body_class( $css_class = '' ) { $classes[] = 'attachment-' . str_replace( $mime_prefix, '', $mime_type ); } elseif ( is_page() ) { $classes[] = 'page'; - - $page_id = $wp_query->get_queried_object_id(); - - $post = get_post( $page_id ); - - $classes[] = 'page-id-' . $page_id; + $classes[] = 'page-id-' . $post_id; if ( get_pages( array( - 'parent' => $page_id, + 'parent' => $post_id, 'number' => 1, ) ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 1993e99af9..48b96a24d8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56422'; +$wp_version = '6.4-alpha-56424'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.