post_embed_url WordPress Filter Hook
The post_embed_url Wordpress hook allows you to modify the URL that is used for embedding a post. This can be useful if you want to change the URL of the post that is being embedded.
apply_filters( 'post_embed_url', string $embed_url , WP_Post $post ) #
Filters the URL to embed a specific post.
Parameters
- $embed_url
(string)The post embed URL.
- $post
(WP_Post)The corresponding post object.
Source
File: wp-includes/embed.php
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |