返回介绍

_delete_attachment_theme_mod()

发布于 2017-09-11 13:19:33 字数 2206 浏览 998 评论 0 收藏 0

Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_delete_attachment_theme_mod( int $id )

Checks an attachment being deleted to see if it’s a header or background image.


description

If true it removes the theme modification which would be pointing at the deleted attachment.


参数

$id

(int) (Required) The attachment id.


源代码

File: wp-includes/theme.php

function _delete_attachment_theme_mod( $id ) {
	$attachment_image = wp_get_attachment_url( $id );
	$header_image     = get_header_image();
	$background_image = get_background_image();
	$custom_logo_id   = get_theme_mod( 'custom_logo' );

	if ( $custom_logo_id && $custom_logo_id == $id ) {
		remove_theme_mod( 'custom_logo' );
		remove_theme_mod( 'header_text' );
	}

	if ( $header_image && $header_image == $attachment_image ) {
		remove_theme_mod( 'header_image' );
		remove_theme_mod( 'header_image_data' );
	}

	if ( $background_image && $background_image == $attachment_image ) {
		remove_theme_mod( 'background_image' );
	}
}

更新日志

Versiondescription
4.5.0Also removes custom logo theme mods.
4.3.0Also removes header_image_data.
3.0.0Introduced.

相关函数

Uses

  • wp-includes/theme.php: get_header_image()
  • wp-includes/theme.php: get_background_image()
  • wp-includes/theme.php: remove_theme_mod()
  • wp-includes/theme.php: get_theme_mod()
  • wp-includes/post.php: wp_get_attachment_url()

User Contributed Notes

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

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

发布评论

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