mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Embeds: Allow posts with a public custom post status to be embedded.
Previously, only posts with the `publish` status could be embedded. Props goaroundagain, peterwilsoncc, poena. Fixes #47574. git-svn-id: https://develop.svn.wordpress.org/trunk@50401 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -509,7 +509,8 @@ JS;
|
||||
*
|
||||
* @param WP_Post|int $post Post object or ID.
|
||||
* @param int $width The requested width.
|
||||
* @return array|false Response data on success, false if post doesn't exist.
|
||||
* @return array|false Response data on success, false if post doesn't exist
|
||||
* or is not publicly viewable.
|
||||
*/
|
||||
function get_oembed_response_data( $post, $width ) {
|
||||
$post = get_post( $post );
|
||||
@@ -519,7 +520,7 @@ function get_oembed_response_data( $post, $width ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( 'publish' !== get_post_status( $post ) ) {
|
||||
if ( ! is_post_publicly_viewable( $post ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user