Общие домены верхнего уровня с кодом страны (ccTLD). Некоторые доменные имена категории ccTLD (например, .tv, .me и т. д.) Google рассматривает как домены gTLD, поскольку пользователи и веб-мастера часто считают их общими (не связанными с какой-либо страной). Ниже приведен список доменов категории ccTLD. Он может быть изменен в любое время.
administrator
заменить на publish_posts
.add_filter('show_admin_bar', '__return_false');
function set_user_admin_bar_false_by_default($user_id) {
update_user_meta( $user_id, 'show_admin_bar_front', 'false' );
}
add_action('user_register', 'set_user_admin_bar_false_by_default', 10, 1);
// Turn debugging on
define('WP_DEBUG', true);
// Tell WordPress to log everything to /wp-content/debug.log
define('WP_DEBUG_LOG', true);
// Turn on the display of error messages on your site
define('WP_DEBUG_DISPLAY', true);
the_content();
- это вывод контента.?>
или после </div>
wp_link_pages
- это пагинация.<?php
the_content();
?>
//ТУТ ВАШ КОД
<?php
wp_link_pages( array(
'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'colormag' ),
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>'
) );
?>
/** CRON https://codex.wordpress.org/Editing_wp-config.php#Alternative_Cron **/
define('ALTERNATE_WP_CRON', true);
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
add_filter('register_post_type_args', function($args, $post_type) {
if (!is_admin() && $post_type == 'page') {
$args['exclude_from_search'] = true;
}
return $args;
}, 10, 2);
// The following example is for adding a hook callback.
// define the woocommerce_calculated_total callback
function filter_woocommerce_calculated_total( $round, $instance ) {
// make filter magic happen here...
return $round;
};
// add the filter
add_filter( 'woocommerce_calculated_total', 'filter_woocommerce_calculated_total', 10, 2 );
function add_admin_custom_css(){
echo '<style type="text/css">
label[class^="post-format-"]{font-size:0px;}
label[class^="post-format-"]:before,label[class^="post-format-"]:after{font-size:13px;}
label.post-format-standard:after{content:"вместо стандарта"}
label.post-format-aside:after{content:"вместо заметки"}
label.post-format-image:after{content:"вместо изображения"}
</style>'; }
add_action('admin_head', 'add_admin_custom_css');