RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} olddomain.ua
RewriteRule (.*) https://newdomain.ua/$1 [R=301,L]
# BEGIN WordPress
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
$comments = get_comments(array('author__in' => get_current_user_id(), 'number'=> 5 )); //получаем 5 последних комментариев текущего пользователя
foreach($comments as $comment) :
$args = array(
'number' => '1',
'post_id' => $comment->comment_post_ID
);
$last_comments = get_comments($args);
foreach($last_comments as $last_comment) :
echo "<a href='". get_comment_link( $last_comment->comment_ID ) ."'>".get_the_title( $comment->comment_post_ID ). "</a><br>"; //выводим название постов в которых оставлен комментарий
endforeach;
endforeach;
Правильно ли понял вас, вы предлагаете подключаться по домену но просто обогнуть dns сервер , тк hosts выше приоритетом, и прописать в нем один конкретный ?