返回介绍

get_post_embed_url()

发布于 2017-09-10 23:51:04 字数 2523 浏览 869 评论 0 收藏 0

get_post_embed_url( int|WP_Post $post = null )

Retrieves the URL to embed a specific post in an iframe.


description


参数

$post

(int|WP_Post) (Optional) Post ID or object. Defaults to the current post.

Default value: null


返回值

(string|false) The post embed URL on success, false if the post doesn't exist.


源代码

File: wp-includes/embed.php

function get_post_embed_url( $post = null ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	$embed_url     = trailingslashit( get_permalink( $post ) ) . user_trailingslashit( 'embed' );
	$path_conflict = get_page_by_path( str_replace( home_url(), '', $embed_url ), OBJECT, get_post_types( array( 'public' => true ) ) );

	if ( ! get_option( 'permalink_structure' ) || $path_conflict ) {
		$embed_url = add_query_arg( array( 'embed' => 'true' ), get_permalink( $post ) );
	}

	/**
	 * Filters the URL to embed a specific post.
	 *
	 * @since 4.4.0
	 *
	 * @param string  $embed_url The post embed URL.
	 * @param WP_Post $post      The corresponding post object.
	 */
	return esc_url_raw( apply_filters( 'post_embed_url', $embed_url, $post ) );
}

更新日志

Versiondescription
4.4.0Introduced.

相关函数

Uses

  • wp-includes/embed.php: post_embed_url
  • wp-includes/formatting.php: esc_url_raw()
  • wp-includes/formatting.php: trailingslashit()
  • wp-includes/functions.php: add_query_arg()
  • wp-includes/link-template.php: home_url()
  • wp-includes/link-template.php: get_permalink()
  • wp-includes/link-template.php: user_trailingslashit()
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/option.php: get_option()
  • wp-includes/post.php: get_page_by_path()
  • wp-includes/post.php: get_post()
  • wp-includes/post.php: get_post_types()
  • Show 7 more uses Hide more uses

Used By

  • wp-includes/embed.php: get_post_embed_html()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文