Jump to content

Не выводятся новости в WordPress

Featured Replies

Posted
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.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.