bestsource

WordPress - 작성자 페이지에서 주석 허용

bestsource 2023. 9. 16. 09:32
반응형

WordPress - 작성자 페이지에서 주석 허용

사용자가 작성자 프로필 페이지에 댓글을 남길 수 있어야 합니다.

여기서 저는 이를 허용하기 위해 무엇을 해야 하는지에 대한 기본적인 개요를 알려주는 또 다른 답을 발견했습니다. https://wordpress.stackexchange.com/questions/8996/author-page-comments-and-ratings

그렇기는 하지만, 어떻게 실행해야 할지 잘 모르겠습니다.댓글을 유지하기 위해 사용자 지정 게시물 유형을 만들었지만, 사용자/작성자가 사이트에 등록할 때마다(공개 등록으로 사이트를 구축하고 있음) 사용자 지정 게시물 유형으로 게시물을 만들어 댓글을 유지한 다음 사용자 프로필에 자동으로 연결하도록 만드는 방법을 모릅니다.

링크된 질문에 제공된 답변보다 더 자세한 답변을 주시면 감사하겠습니다. 그러면 이를 실행하는 방법을 정확하게 이해할 수 있을 것입니다.

대단히 고맙습니다

실제로 사용자_registerAction like로 Stuff를 후크하기만 하면 됩니다.

function my_user_register($user_id){

    $user = get_user_by( 'id', $user_id );

    /**
     * if required you can limit this profile creation action to some limited 
     * roles only
     */

    /**
     * Created new Page under "user_profile_page" every time a new User 
     * is being created
     */

    $profile_page = wp_insert_post(array(
        'post_title'        => " $user->display_name Profile ", // Text only to Map those page @ admin
        'post_type'         => "user_profile_page", // Custom Post type which you have created 
        'post_status'       => 'publish',
        'post_author'       => $user_id,
    ));

    /**
     * Save the Profile Page id into the user meta
     */
    if(!is_wp_error($profile_page))
        add_user_meta($user_id,'user_profile_page',$profile_page,TRUE);
}

/**
 * Action which is being trigger Every time when a new User is being created
 */
add_action('user_register','my_user_register');

위 코드는 원래 게시물 https://wordpress.stackexchange.com/questions/8996/author-page-comments-and-ratings 에서 실제로 누락된 코드입니다. 따라서 위 코드를 추가한 후 작성자에게 따라가면 됩니다. 코드와 같은 php

$profile_page = get_the_author_meta('user_profile_page');

global $post;
$post = get_post($profile_page);

setup_postdata( $post ); 

//fool wordpress to think we are on a single post page
$wp_query->is_single = true;
//get comments
comments_template();
//reset wordpress to ture post
$wp_query->is_single = false;

wp_reset_query();

insert_user_meta hook을 사용하여 wp_insert_user 함수(등록 단계에서 사용자 삽입에 사용하는 경우)에 새 필터를 후크할 수 있으므로 새 사용자를 생성한 후 저장하기 전에 이 필터를 메타 어레이에서 호출합니다.도움이 될 수 있는 코드 예시는 다음과 같습니다.

<?php
add_filter('insert_user_meta', 'nl_associate_cp_to_user', 10, 3);
function nl_associate_cp_to_user($meta, $user, $update ){
    $meta['cpid_for_comments'] = nl_get_new_cpid_for_comments();
    return $meta;
}

function nl_get_new_cpid_for_comments(){
    $data = array(
        'post_type'    => 'CCPT',
        'post_title'    => 'Stub Post',
        'post_content'  => '',
        'post_status'   => 'publish',
        'post_author'   => 1,
    );

    $post_id = wp_insert_post( $data );
    if(!is_wp_error($post_id)) return $post_id; 
}
?>

아래 코드로 user-author.php 파일을 업데이트 할 수 있습니다.

<?php
           //save blog Id
            $blog_id = $post->ID;
           // now map your post with author post
            $author_post_id = get_user_meta($user_id, author_post_id,blog);
            query_posts("p=$author_post_id");
            the_post();
           //Your are in a single post page
           $wp_query->is_single = blog;
          //get comments
          comments_template();
          //reset wordpress to particular post
          $wp_query->is_single = false;
          query_posts("p=$blog_id");
         the_post();
    ?>

여기서는 특정 블로그에 대한 블로그 ID를 가정하여 이해할 필요가 있습니다.혹시 다른 문제가 있다면 저에게 알려주시기 바랍니다.

언급URL : https://stackoverflow.com/questions/34178107/wordpress-allowing-comments-on-author-pages

반응형