
如何修复MAMP本地环境phpMyAdmin不工作错误
get_comment_type ( $comment_ID = 0 )
get_comment_type: 这个函数用来获取评论的类型。评论类型是在创建评论时设置的,可以是一个字符串值,如”pingback”,”trackback”,或任何由主题或插件设置的自定义值。
检索当前评论的评论类型。
function get_comment_type( $comment_ID = 0 ) { $comment = get_comment( $comment_ID ); if ( '' === $comment->comment_type ) { $comment->comment_type = 'comment'; } /** * Filters the returned comment type. * * @since 1.5.0 * @since 4.1.0 The `$comment_ID` and `$comment` parameters were added. * * @param string $comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'. * @param string $comment_ID The comment ID as a numeric string. * @param WP_Comment $comment The comment object. */ return apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment ); }