我在我的WordPress模板使用同位素(JQuery的),我想使用添加項目選項(前置)。你可以在這裏看到:http://isotope.metafizzy.co/demos/adding-items.html顯示PHP代碼中的JavaScript函數
,我使用作品的腳本:
$('#prepend a').click(function(){
var $newItems = $(<div>Hello World</div>);
$('#container').prepend($newItems)
.isotope('reloadItems').isotope({ sortBy: 'original-order' });
});
當我點擊此鏈接:
<li id="prepend"><a href="#">More</a></li>
該腳本將你好我的網頁上。
的問題是,我不希望添加一個div,但我想補充一個帖子。
這裏是郵政代碼,我想用:
<?php query_posts('category_name=offers'); while (have_posts()) : the_post(); ?>
<a href="<?php echo get_permalink(); ?>" class="element <?php $posttags = get_the_tags();
if ($posttags) { foreach($posttags as $tag) { echo $tag->slug . " "; } } ?>">
<div>
<?php the_title("<h3>", "</h3>"); ?>
</div>
</a>
<?php endwhile;?>
你知道一種方法,使它的工作原理?
(對不起,我可怕的英語......)
你必須做出或使用你的WordPress博客的網址,以獲取渲染您的文章。嘗試找到並閱讀關於WordPress的帖子ajax的一些文檔。 – Sebastien 2012-02-17 14:57:17
(我不知道如何,但我刪除了我的評論...)。 我會環顧Ajax和WordPress。謝謝你們的幫助! – 2012-02-19 21:08:42