Title: is_post_embeddable
Published: April 28, 2025
Last modified: May 20, 2026

---

# apply_filters( ‘is_post_embeddable’, bool $is_embeddable, WP_Post $post )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#wp--skip-link--target)

Filter whether a post is embeddable.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#parameters)󠁿

 `$is_embeddable`bool

Whether the post is embeddable.

`$post`[WP_Post](https://developer.wordpress.org/reference/classes/wp_post/)

Post object.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#source)󠁿

    ```php
    return apply_filters( 'is_post_embeddable', $is_embeddable, $post );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/post.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/post.php#L2547)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/post.php#L2547-L2547)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#related)󠁿

| Used by | Description | 
| [is_post_embeddable()](https://developer.wordpress.org/reference/functions/is_post_embeddable/)`wp-includes/post.php` |

Determines whether a post is embeddable.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/is_post_embeddable/?output_format=md#changelog)󠁿

| Version | Description | 
| [6.8.0](https://developer.wordpress.org/reference/since/6.8.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fis_post_embeddable%2F)
before being able to contribute a note or feedback.