web-dev-qa-db-ja.com

メンバーがコメントを残した場合にのみのコンテンツを表示する

機能Php:

add_shortcode( 'membervip', 'memberviparea' );
function memberviparea( $atts, $content = null ) {
    if( is_user_logged_in() ) return '<p>' . $content . '</p>';
    else return;
}

役職 :

[membervip] Lorem ipsum dolor座ってamet、conittetuer adipiscing elit、落ち着いた雰囲気の中にlaoreet dolore magna aliquam erat volutpat。[/ membervip]

このコードを使用すると、ログインしているメンバーにのみリンクを表示できますが、ログインしていてコメントをしているメンバーにのみリンクを表示したいと思います。

どんなコードがこれをすることができますか?

4
M.UNLU

ユーザーがコメントを残したかどうかを確認

// the user may have commented on *any* post
define( 'CHECK_GLOBAL_FOR_COMMENTS', TRUE );

//
// some more code
//

function memberviparea( $atts, $content = null ) {

    $post_id = 0;

    // if the user have to left a comment explicit on this post, get the post ID
    if( defined( 'CHECK_GLOBAL_FOR_COMMENTS' ) && FALSE === CHECK_GLOBAL_FOR_COMMENTS ) {
        global $post;

        $post_id = ( is_object( $post ) && isset( $post->ID ) ) ?
            $post->ID : 0;
    }

    if( is_user_logged_in() && user_has_left_comment( $post_id ) )
        return '<p>' . $content . '</p>';
    else
        return;

}

/**
 * Check if the user has left a comment
 *
 * If a post ID is set, the function checks if
 * the user has just left a comment in this post.
 * Otherwise it check if the user has left a comment on
 * any post.
 * If no user ID is set, the ID of the current logged in user is used.
 * If no user is currently logged in, the fuction returns null.
 *
 * @param int $post_id ID of the post (optional)
 * @param int $user_id User ID (required)
 * @return null|bool Null if no user is logged in and no user ID is set, else true if the user has left a comment, false if not
 */
function user_has_left_comment( $post_id = 0, $user_id = 0 ) {

    if( ! is_user_logged_in() && 0 === $user_id )
        return NULL;
    elseif( 0 === $user_id )
        $user_id = wp_get_current_user()->ID;

    $args = array( 'user_id' => $user_id );

    if ( 0 !== $post_id )
        $args['post_id'] = $post_id;

    $comments = get_comments( $args );

    return ! empty( $comments );

}

この関数は、ユーザーが現在の投稿にコメントを残したかどうかを確認します。ユーザーが一般的にコメントを残したかどうか(onany投稿)を確認する場合は、この行を削除またはコメントアウトしてください'post_id' => $pid, // get only comments from this post and

更新

そのような関数は便利かもしれないので、私はそれを再利用しやすくするために少しコードを書き直しました。投稿IDを関数に渡すことで、ユーザーがany投稿または特定の投稿にコメントを残したかどうかを確認できるようになりました。

7
Ralf912