This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function true_register_wp_sidebars() { | |
/* В боковой колонке */ | |
register_sidebar( | |
array( | |
'id' => 'true_side', // уникальный id | |
'name' => 'Боковая колонка', // название сайдбара | |
'description' => 'Перетащите сюда виджеты, чтобы добавить их в сайдбар.', // описание | |
'before_widget' => '<div id="%1$s" class="widjet %2$s">', // по умолчанию виджеты выводятся <li>-списком |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
remove_action('wp_head','wp_enqueue_scripts'); | |
remove_action('wp_head', 'rsd_link'); | |
remove_action('wp_head', 'wlwmanifest_link'); | |
remove_action('wp_head', 'wp_generator'); |
NewerOlder