Changeset 61727
- Timestamp:
- 02/24/2026 10:42:27 PM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-query.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r61590 r61727 4817 4817 * 4818 4818 * @param WP_Post|object|int $post WP_Post instance or Post ID/object. 4819 * @return true True when finished.4819 * @return bool True on success, false on failure. 4820 4820 */ 4821 4821 public function setup_postdata( $post ) { … … 4827 4827 4828 4828 if ( ! $post ) { 4829 return ;4829 return false; 4830 4830 } 4831 4831 4832 4832 $elements = $this->generate_postdata( $post ); 4833 4833 if ( false === $elements ) { 4834 return ;4834 return false; 4835 4835 } 4836 4836
Note: See TracChangeset
for help on using the changeset viewer.