返回介绍

avoid_blog_page_permalink_collision()

发布于 2017-09-10 21:33:21 字数 1910 浏览 979 评论 0 收藏 0

avoid_blog_page_permalink_collision( array $data,  array $postarr )

Avoids a collision between a site slug and a permalink slug.


description

In a subdirectory install this will make sure that a site and a post do not use the same subdirectory by checking for a site with the same name as a new post.


参数

$data

(array) (Required) An array of post data.

$postarr

(array) (Required) An array of posts. Not currently used.


返回值

(array) The new array of post data after checking for collisions.


源代码

File: wp-admin/includes/ms.php

function avoid_blog_page_permalink_collision( $data, $postarr ) {
	if ( is_subdomain_install() )
		return $data;
	if ( $data['post_type'] != 'page' )
		return $data;
	if ( !isset( $data['post_name'] ) || $data['post_name'] == '' )
		return $data;
	if ( !is_main_site() )
		return $data;

	$post_name = $data['post_name'];
	$c = 0;
	while( $c < 10 && get_id_from_blogname( $post_name ) ) {
		$post_name .= mt_rand( 1, 10 );
		$c ++;
	}
	if ( $post_name != $data['post_name'] ) {
		$data['post_name'] = $post_name;
	}
	return $data;
}

更新日志

Versiondescription
3.0.0Introduced.

相关函数

Uses

  • wp-includes/functions.php: is_main_site()
  • wp-includes/ms-load.php: is_subdomain_install()
  • wp-includes/ms-blogs.php: get_id_from_blogname()

User Contributed Notes

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

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

发布评论

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