wpseek.com
WordPress开发者和主题制作者的搜索引擎



_reset_front_page_settings_for_post › WordPress Function

Since3.7.0
已弃用n/a
_reset_front_page_settings_for_post ( $post_id )
访问:
  • private
参数:
  • (int) $post_id Post ID.
    Required: Yes
定义在:
文档:

Resets the page_on_front, show_on_front, and page_for_post settings when a linked page is deleted or trashed.

Also ensures the post is no longer sticky.


源码

function _reset_front_page_settings_for_post( $post_id ) {
	$post = get_post( $post_id );

	if ( 'page' === $post->post_type ) {
		/*
		 * If the page is defined in option page_on_front or post_for_posts,
		 * adjust the corresponding options.
		 */
		if ( get_option( 'page_on_front' ) == $post->ID ) {
			update_option( 'show_on_front', 'posts' );
			update_option( 'page_on_front', 0 );
		}
		if ( get_option( 'page_for_posts' ) == $post->ID ) {
			update_option( 'page_for_posts', 0 );
		}
	}

	unstick_post( $post->ID );
}