返回介绍

get_default_comment_status()

发布于 2017-09-10 23:14:22 字数 2619 浏览 985 评论 0 收藏 0

get_default_comment_status( string $post_type = 'post',  string $comment_type = 'comment' )

Gets the default comment status for a post type.


description


参数

$post_type

(string) (Optional) Post type.

Default value: 'post'

$comment_type

(string) (Optional) Comment type.

Default value: 'comment'


返回值

(string) Expected return value is 'open' or 'closed'.


源代码

File: wp-includes/comment.php

function get_default_comment_status( $post_type = 'post', $comment_type = 'comment' ) {
	switch ( $comment_type ) {
		case 'pingback' :
		case 'trackback' :
			$supports = 'trackbacks';
			$option = 'ping';
			break;
		default :
			$supports = 'comments';
			$option = 'comment';
	}

	// Set the status.
	if ( 'page' === $post_type ) {
		$status = 'closed';
	} elseif ( post_type_supports( $post_type, $supports ) ) {
		$status = get_option( "default_{$option}_status" );
	} else {
		$status = 'closed';
	}

	/**
	 * Filters the default comment status for the given post type.
	 *
	 * @since 4.3.0
	 *
	 * @param string $status       Default status for the given post type,
	 *                             either 'open' or 'closed'.
	 * @param string $post_type    Post type. Default is `post`.
	 * @param string $comment_type Type of comment. Default is `comment`.
	 */
	return apply_filters( 'get_default_comment_status' , $status, $post_type, $comment_type );
}

更新日志

Versiondescription
4.3.0Introduced.

相关函数

Uses

  • wp-includes/comment.php: get_default_comment_status
  • wp-includes/plugin.php: apply_filters()
  • wp-includes/option.php: get_option()
  • wp-includes/post.php: post_type_supports()

Used By

  • wp-admin/includes/post.php: get_default_post_to_edit()
  • wp-includes/post.php: wp_insert_post()
  • wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::mw_editPost()
  • wp-includes/class-wp-xmlrpc-server.php: wp_xmlrpc_server::mw_newPost()

User Contributed Notes

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

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

发布评论

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