/** SSL в панели администратора */
define('FORCE_SSL_LOGIN', true);
/** SSL в панели входа */
define('FORCE_SSL_ADMIN', true);
UPDATE wp_posts
SET post_content = REPLACE (post_content, 'http://старый.ru', 'https://новый.ru')
UPDATE wp_postmeta
SET meta_value = REPLACE (meta_value, 'http://старый.ru','https://новый.ru')
UPDATE wp_posts
SET guid = REPLACE (guid, 'http://старый.ru', 'https://новый.ru')
UPDATE wp_posts SET post_content = REPLACE (post_content,
'src="http://старый.ru', 'src="https://новый.ru');
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.ru$ [NC]
RewriteCond %{HTTP:X-Forwarded-Proto} !=https
RewriteRule ^(.*)$ https://mysite.ru/$1 [R=301,L]
<div class="related-content">
<h3 class="related-content-title">Читайте также</h3>
<?php
$categories = get_the_category($post->ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args=array(
'category__in' => $category_ids, // Сортировка производится по категориям
'orderby'=>rand, // Условие сортировки рандом, если хочешь чтобы выводилась по дате то удали эту строку или закомментируй
'post__not_in' => array($post->ID),
'showposts'=>10, //Количество выводимых записей
'caller_get_posts'=>1 // Запрещаем повторение ссылок
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) {
$my_query->the_post();
?>
<article id="post-<?php the_ID(); ?>" class="hentry">
<a class="post-thumbnail" href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<h3 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title_attribute(); ?></a></h3>
</article><!-- #post-## -->
<?php
}
<?php the_posts_pagination(); ?>
} else {
// Постов не найдено
}
wp_reset_postdata();
} ?>
</div>
<span class="menu-link">
<?php wp_nav_menu('menu=Название'); ?>
</span>
.menu-link,
.menu-link h1,
.menu-link ul li a,{
color: red;
font-weight: bold;
}
.menu-link,
.menu-link h1,
.menu-link ul li a,{
color: red !important;
font-weight: bold !important;
}
<div class="entry-meta">
<?php ta_pluton_posted_on(); ?>
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages ?>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( ', ' );
if ( $categories_list && ta_pluton_categorized_blog() ) :
?>
<span class="cat-links">
<?php printf( __( 'Posted in %1$s', 'ta-pluton' ), $categories_list ); ?>
</span>
<?php endif; // End if categories ?>
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'ta-pluton' ), __( '1 Comment', 'ta-pluton' ), __( '% Comments', 'ta-pluton' ) ); ?></span>
<?php endif; ?>
</div><!-- .entry-meta -->