Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
// Auto check parent category function assign_parent_terms($post_id, $post){ $arrayPostTypeAllowed = array('post','interview'); $arrayTermsAllowed = array('category','interview_category'); //Check post type if(!in_array($post->post_type, $arrayPostTypeAllowed)){ return $post_id; }else{ // get all assigned terms foreach($arrayTermsAllowed AS $t_name){ $terms = wp_get_post_terms($post_id, $t_name ); foreach($terms as $term){ while($term->parent != 0 && !has_term( $term->parent, $t_name, $post )){ // move upward until we get to 0 level terms wp_set_post_terms($post_id, array($term->parent), $t_name, true); $term = get_term($term->parent, $t_name); } } } } } add_action('save_post', 'assign_parent_terms', 10, 2); |
Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ.