mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 00:01:27 +01:00
Return false in get_post_format() if the post does not exist.
props adamsilverstein, ericlewis. fixes #23255. git-svn-id: http://core.svn.wordpress.org/trunk@24057 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8131644bf6
commit
84c41080f5
@ -11,12 +11,12 @@
|
||||
*
|
||||
* @since 3.1.0
|
||||
*
|
||||
* @param int|object $post A post.
|
||||
*
|
||||
* @return mixed The format if successful. False if no format is set. WP_Error if errors.
|
||||
* @param int|object $post Post ID or post object. Optional, default is the current post from the loop.
|
||||
* @return mixed The format if successful. False otherwise.
|
||||
*/
|
||||
function get_post_format( $post = null ) {
|
||||
$post = get_post($post);
|
||||
if ( ! $post = get_post( $post ) )
|
||||
return false;
|
||||
|
||||
if ( ! post_type_supports( $post->post_type, 'post-formats' ) )
|
||||
return false;
|
||||
@ -28,7 +28,7 @@ function get_post_format( $post = null ) {
|
||||
|
||||
$format = array_shift( $_format );
|
||||
|
||||
return ( str_replace('post-format-', '', $format->slug ) );
|
||||
return str_replace('post-format-', '', $format->slug );
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user