Mặc định WordPress không chạy shortcode trong widget text.
-
Để chạy được ta cần thêm đoạn code sau vào file functions.php của theme
12//Run Shortcode in widget textadd_filter('widget_text', 'do_shortcode'); -
Chuyển hướng tới trang khác khi post có shortcode nào đó
Code này giúp bạn chuyển hướng trang web khi ở theme, post, page nào đó. Hoặc post nào có shortcode nào đó … tất cả những điều kiện mà bạn cần.
123456789function my_page_template_redirect(){global $post;if( is_a( $post, 'WP_Post' ) && has_shortcode( $post->post_content, 'your_short_code') && ! is_user_logged_in() ) {wp_redirect(URL_IN_HERE);exit();}}add_action( 'template_redirect', 'my_page_template_redirect' );
Chúc các bạn thành công!
Nguồn: levantoan[.]com










