WordPress | 한국어 지원 » 모든 답변 https://ko.wordpress.org/support/forums/feed/ Sat, 10 Dec 2022 17:55:36 +0000 https://bbpress.org/?v=2.7.0-alpha-2 ko-KR https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load-2/#post-12890213 <![CDATA['Custom post type & custom taxonomy page load'에 답변달기]]> https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load-2/#post-12890213 Mon, 13 Jun 2022 07:25:23 +0000 gnjang I want to create some file and control several categories in the generated file

]]>
https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load-2/#post-12890212 <![CDATA[Custom post type & custom taxonomy page load]]> https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load-2/#post-12890212 Mon, 13 Jun 2022 07:25:11 +0000 gnjang Hi,

I made and checked the post type page archive-videos.php. However, I created taxonomy-videos.php to load the page registered in the added taxonomy, but the page could not be found. What was the solution?

my source here

add_action( 'init', 'set_rs_custom_posts' );
function set_rs_custom_posts() {
    $news_label = array(
        'name'               => __('News', 'rsupport' ),
        'singular_name'      => __('News', 'rsupport' ),
        'menu_name'          => __('News', 'rsupport'),
        'show_in_nav_menus' => true,
        'show_in_menu' => true,
    );

    $news = array(
        'labels'        => $news_label,
        'description'   => __('news', 'rsupport'),
        'public'        => true,
        'menu_position' => 5,
        'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments', 'page-attributes'),
        'has_archive'   => true, // only this is required to enable archive page else 404 error will occur
        'publicly_queryable' => true,
        'show_ui' => true,
        'query_var' => true,
        'hierarchical' => false,
        // 'taxonomies'  => array( 'news', 'news-category' ),
        
    );
    $video_label = array(
        'name'               => __('Video', 'rsupport' ),
        'singular_name'      => __('Video', 'rsupport' ),
        'menu_name'          => __('Video', 'rsupport'),
        'show_in_nav_menus' => true,
        'show_in_menu' => true,
    );

    $video = array(
        'labels'        => $video_label,
        'description'   => __('video', 'rsupport'),
        'public'        => true,
        'menu_position' => 5,
        'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments', 'page-attributes'),
        'has_archive'   => true, // only this is required to enable archive page else 404 error will occur
        'publicly_queryable' => true,
        'show_ui' => true,
        'query_var' => true,
        'hierarchical' => false,
        'taxonomies' => array('videos'),
        // 'rewrite' => true,
        'rewrite' => array( 'slug' => 'videos','with_front' => false),
    );

    // //register_post_type( 'video', $video );
    // register_post_type( 'videoguide', $video );
    register_post_type( 'videos', $video );
    register_post_type( 'news', $news );

    flush_rewrite_rules();
}

add_action( 'init', 'set_rs_custom_categories' );
function set_rs_custom_categories(){
    $taxonomy_labels = array(
        'name'                       => _x( 'Category', 'Taxonomy General Name', 'rsupport' ),
        'singular_name'              => _x( 'Category', 'Taxonomy Singular Name', 'rsupport' ),
        'menu_name'                  => __( 'Category', 'rsupport' ),
        'all_items'                  => __( 'All Items', 'rsupport' ),
        'parent_item'                => __( 'Parent Item', 'rsupport' ),
        'parent_item_colon'          => __( 'Parent Item:', 'rsupport' ),
        'new_item_name'              => __( 'New Item Name', 'rsupport' ),
        'add_new_item'               => __( 'Add New Item', 'rsupport' ),
        'edit_item'                  => __( 'Edit Item', 'rsupport' ),
        'update_item'                => __( 'Update Item', 'rsupport' ),
        'separate_items_with_commas' => __( 'Separate items with commas', 'rsupport' ),
        'search_items'               => __( 'Search Items', 'rsupport' ),
        'add_or_remove_items'        => __( 'Add or remove items', 'rsupport' ),
        'choose_from_most_used'      => __( 'Choose from the most used items', 'rsupport' ),
        'not_found'                  => __( 'Not Found', 'rsupport' ),
    );

    $args_news = array(
        'labels'                     => $taxonomy_labels,
        'hierarchical'               => true,
        'public'                     => true,
        'show_ui'                    => true,
        'show_admin_column'          => true,
        'show_in_nav_menus'          => true,
        'show_tagcloud'              => true,
        'query_var'                  =>true,
        'has_archive'                => true,
        'rewrite' => array( 'slug' => 'news'),
    );
    $args_videos = array(
        'labels'                     => $taxonomy_labels,
        'hierarchical'               => true,
        'public'                     => true,
        'show_ui'                    => true,
        'show_admin_column'          => true,
        'show_in_nav_menus'          => true,
        'show_tagcloud'              => true,
        'query_var'                  =>true,
        'has_archive'                => true,
        'rewrite' => array( 'slug' => 'videos','with_front' => false),
    );

    register_taxonomy( 'news', 'news', $args_news );
    register_taxonomy( 'videos', 'videos', $args_videos );
    
}

add_action( 'init', 'set_rs_custom_register_taxonomy' );
function set_rs_custom_register_taxonomy() {
    register_taxonomy_for_object_type( 'news', 'news' );
    register_taxonomy_for_object_type( 'videos', 'videos' );
    
}
]]>
https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load/#post-12890210 <![CDATA['Custom post type & custom taxonomy page load'에 답변달기]]> https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load/#post-12890210 Mon, 13 Jun 2022 07:02:22 +0000 gnjang I want to create some file and control several categories in the generated file.

  • 이 답변은 gnjang에 의해 6 months 전에 수정됐습니다.
]]>
https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load/#post-12890209 <![CDATA[Custom post type & custom taxonomy page load]]> https://ko.wordpress.org/support/topic/custom-post-type-custom-taxonomy-page-load/#post-12890209 Mon, 13 Jun 2022 07:00:47 +0000 gnjang Hi,

I made and checked the post type page archive-videos.php. However, I created taxonomy-videos.php to load the page registered in the added taxonomy, but the page could not be found. What was the solution?

my source here

/* custom post type 등록 */
add_action( 'init', 'set_rs_custom_posts' );
function set_rs_custom_posts() {
    $news_label = array(
        'name'               => __('News', 'rsupport' ),
        'singular_name'      => __('News', 'rsupport' ),
        'menu_name'          => __('News', 'rsupport'),
        'show_in_nav_menus' => true,
        'show_in_menu' => true,
    );

    $news = array(
        'labels'        => $news_label,
        'description'   => __('news', 'rsupport'),
        'public'        => true,
        'menu_position' => 5,
        'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments', 'page-attributes'),
        'has_archive'   => true, // only this is required to enable archive page else 404 error will occur
        'publicly_queryable' => true,
        'show_ui' => true,
        'query_var' => true,
        'hierarchical' => false,
        // 'taxonomies'  => array( 'news', 'news-category' ),
        
    );
    $video_label = array(
        'name'               => __('Video', 'rsupport' ),
        'singular_name'      => __('Video', 'rsupport' ),
        'menu_name'          => __('Video', 'rsupport'),
        'show_in_nav_menus' => true,
        'show_in_menu' => true,
    );

    $video = array(
        'labels'        => $video_label,
        'description'   => __('video', 'rsupport'),
        'public'        => true,
        'menu_position' => 5,
        'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments', 'page-attributes'),
        'has_archive'   => true, // only this is required to enable archive page else 404 error will occur
        'publicly_queryable' => true,
        'show_ui' => true,
        'query_var' => true,
        'hierarchical' => false,
        'taxonomies' => array('videos'),
        // 'rewrite' => true,
        'rewrite' => array( 'slug' => 'videos','with_front' => false),
    );

    // //register_post_type( 'video', $video );
    // register_post_type( 'videoguide', $video );
    register_post_type( 'videos', $video );
    register_post_type( 'news', $news );

    flush_rewrite_rules();
}

add_action( 'init', 'set_rs_custom_categories' );
function set_rs_custom_categories(){
    $taxonomy_labels = array(
        'name'                       => _x( 'Category', 'Taxonomy General Name', 'rsupport' ),
        'singular_name'              => _x( 'Category', 'Taxonomy Singular Name', 'rsupport' ),
        'menu_name'                  => __( 'Category', 'rsupport' ),
        'all_items'                  => __( 'All Items', 'rsupport' ),
        'parent_item'                => __( 'Parent Item', 'rsupport' ),
        'parent_item_colon'          => __( 'Parent Item:', 'rsupport' ),
        'new_item_name'              => __( 'New Item Name', 'rsupport' ),
        'add_new_item'               => __( 'Add New Item', 'rsupport' ),
        'edit_item'                  => __( 'Edit Item', 'rsupport' ),
        'update_item'                => __( 'Update Item', 'rsupport' ),
        'separate_items_with_commas' => __( 'Separate items with commas', 'rsupport' ),
        'search_items'               => __( 'Search Items', 'rsupport' ),
        'add_or_remove_items'        => __( 'Add or remove items', 'rsupport' ),
        'choose_from_most_used'      => __( 'Choose from the most used items', 'rsupport' ),
        'not_found'                  => __( 'Not Found', 'rsupport' ),
    );

    $args_news = array(
        'labels'                     => $taxonomy_labels,
        'hierarchical'               => true,
        'public'                     => true,
        'show_ui'                    => true,
        'show_admin_column'          => true,
        'show_in_nav_menus'          => true,
        'show_tagcloud'              => true,
        'query_var'                  =>true,
        'has_archive'                => true,
        'rewrite' => array( 'slug' => 'news'),
    );
    $args_videos = array(
        'labels'                     => $taxonomy_labels,
        'hierarchical'               => true,
        'public'                     => true,
        'show_ui'                    => true,
        'show_admin_column'          => true,
        'show_in_nav_menus'          => true,
        'show_tagcloud'              => true,
        'query_var'                  =>true,
        'has_archive'                => true,
        'rewrite' => array( 'slug' => 'videos','with_front' => false),
    );

    register_taxonomy( 'news', 'news', $args_news );
    register_taxonomy( 'videos', 'videos', $args_videos );
    
}

add_action( 'init', 'set_rs_custom_register_taxonomy' );
function set_rs_custom_register_taxonomy() {
    register_taxonomy_for_object_type( 'news', 'news' );
    register_taxonomy_for_object_type( 'videos', 'videos' );
    
}
]]>
https://ko.wordpress.org/support/topic/keep-wordpress-feed-country-time-change/#post-12890208 <![CDATA['keep wordpress feed country time change'에 답변달기]]> https://ko.wordpress.org/support/topic/keep-wordpress-feed-country-time-change/#post-12890208 Wed, 01 Jun 2022 02:12:12 +0000 샌즈카지노 Park Geun-tae must be defeated strictly.

I work hard. It describes ‘someone’ well.

-Anyone who is just afraid of them?!

faithful. https://tedbirli.com/

– Hit and hit. reporter.

Yoo and Yoon Seok-do were losing.

-… tomboy that? to think. It was popular. How to improve readability?

]]>
https://ko.wordpress.org/support/topic/jetpack-%ed%94%8c%eb%9f%ac%ea%b7%b8%ec%9d%b8%ec%9d%84-%ed%99%9c%ec%9a%a9%ed%95%9c-%ec%86%8d%eb%8f%84-%ed%8a%9c%eb%8b%9d/#post-12890207 <![CDATA[jetpack 플러그인을 활용한 속도 튜닝]]> https://ko.wordpress.org/support/topic/jetpack-%ed%94%8c%eb%9f%ac%ea%b7%b8%ec%9d%b8%ec%9d%84-%ed%99%9c%ec%9a%a9%ed%95%9c-%ec%86%8d%eb%8f%84-%ed%8a%9c%eb%8b%9d/#post-12890207 Mon, 23 May 2022 04:38:01 +0000 tsyoun jetpack 플러그인을 활용한 속도 개선 방법에 대해 소개합니다.

]]>
https://ko.wordpress.org/support/topic/%eb%a8%b8%ea%b0%80-%ec%9e%98-%ec%95%88%eb%90%98%eb%8a%94%eb%8d%b0%ec%9a%94/#post-12890206 <![CDATA['머가 잘 안되는데요.'에 답변달기]]> https://ko.wordpress.org/support/topic/%eb%a8%b8%ea%b0%80-%ec%9e%98-%ec%95%88%eb%90%98%eb%8a%94%eb%8d%b0%ec%9a%94/#post-12890206 Wed, 18 May 2022 06:02:23 +0000 whlee 이제 잘 되는거 같네요.

]]>
https://ko.wordpress.org/support/topic/%eb%a8%b8%ea%b0%80-%ec%9e%98-%ec%95%88%eb%90%98%eb%8a%94%eb%8d%b0%ec%9a%94/#post-12890205 <![CDATA[머가 잘 안되는데요.]]> https://ko.wordpress.org/support/topic/%eb%a8%b8%ea%b0%80-%ec%9e%98-%ec%95%88%eb%90%98%eb%8a%94%eb%8d%b0%ec%9a%94/#post-12890205 Wed, 18 May 2022 06:01:58 +0000 whlee 해결 좀 해주세요.

]]>
https://ko.wordpress.org/support/topic/%ec%82%ac%ec%9d%b4%ed%8a%b8%ea%b0%80-%ec%97%b4%eb%a6%ac%ec%a7%80-%ec%95%8a%ec%8a%b5%eb%8b%88%eb%8b%a4/#post-12890204 <![CDATA[사이트가 열리지 않습니다.]]> https://ko.wordpress.org/support/topic/%ec%82%ac%ec%9d%b4%ed%8a%b8%ea%b0%80-%ec%97%b4%eb%a6%ac%ec%a7%80-%ec%95%8a%ec%8a%b5%eb%8b%88%eb%8b%a4/#post-12890204 Thu, 12 May 2022 06:27:48 +0000 boyo24 해결되었습니다.

]]>
https://ko.wordpress.org/support/topic/keep-wordpress-feed-country-time-change/#post-12890202 <![CDATA[keep wordpress feed country time change]]> https://ko.wordpress.org/support/topic/keep-wordpress-feed-country-time-change/#post-12890202 Sat, 15 Jan 2022 00:50:00 +0000 itons Hello.

I am Korean

Changed the WordPress feed to Korean time.

But when I update WordPress, the feed time changes back to US time.

It would be nice if the WordPress feed was changed to Korean time.

https://itons.net/feed/

]]>