Changeset 10558
- Timestamp:
- 01/08/2021 02:25:26 AM (4 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/breadcrumb-trail.php
r8233 r10558 419 419 $post = get_queried_object(); 420 420 $post_id = get_queried_object_id(); 421 if ( ! $post || ! $post_id ) { 422 return; 423 } 421 424 422 425 /* If the post has a parent, follow the parent trail. */ -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/head.php
r9940 r10558 130 130 elseif ( is_singular() ) { 131 131 $post = get_queried_object(); 132 $desc = $post->post_content; 132 if ( $post ) { 133 $desc = $post->post_content; 134 } 133 135 } 134 136
Note: See TracChangeset
for help on using the changeset viewer.