Posted 28 мая, 201410 yr comment_64400 Привет всем. Я хотел сделать так чтобы выводились новости конкретного автора. Нашел в тырнете способ, вписал следующий скрипт: <?php $post = get_post($post_author = 1); // Записываем все данные записи 1 в объект $post $posthead = get_permalink($post_author = 1); echo '<a href="'.$posthead.'" class="h">'.$post->post_title.'</a>'; // Выводим заголовок записи; echo '<p>'.$post->post_content.'</p>'; // Выводим контент записи; ?> Новости все равно не показываются. Может кто помочь?
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.