Jump to content
  • 0

Ошибка в коде виджета


Mr.Black
 Share

Question

Добрый вечер. Начал осваивать создание своих виджетов для wp и столкнулся с проблемой. Виджет состоит из двух табов. Первый выводит Лучшие записи, с ним проблем нет, а вот второй отвечает за вывод случайных записей. Сут проблемы заключается в том, что он вывод случайно только одну запись и повторяет её несколько раз. Ниже предоставляю код виджета.

P.S когда вставить код нормально в код sidebar-a все работает нормально.

/* Best and random posts */
function Best_and_random_posts() {
echo '<aside class="tab1 section" >
<ul class="tab1Navigation tabs">
<li class="current" >';
echo _e('Best Entries', 'blund');
echo '</li>
<li class="fr" >';
echo _e('Random', 'blund');
echo '</li>
</ul>
<div class="tab1Content" >
<ul class="box visible" >';
if (function_exists('wpp_get_mostpopular')) wpp_get_mostpopular('range=monthly&limit=8&stats_comments=0');
echo '</ul>
<ul class="box" >';
$posts = get_posts('orderby=rand&numberposts=8'); foreach($posts as $post) { ?><li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li><?php };
echo '</ul>
</div>
</aside>';

}
register_sidebar_widget('Best and random posts', 'Best_and_random_posts');

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy