我正试图就我的主题提出一个AJAX请求。
我已经知道wordpress很好地处理AJAX,但不能直接处理主题文件。它使用管理ajax。php用于此。
我在这方面工作了很长时间,真的不知道该把代码放在哪里。
我知道需要将信息放在管理ajax中。php,函数。并且必须指定用户是否未登录。
有人能帮我写代码吗?
HTML:
<article class="delivery-individual">
<!-- # CONTENT HERE -->
</article>
JQUERY:
<script>
$.ajax({
url: "<?php bloginfo(\'template_directory\'); ?>/temakis.php",
dataType: "html",
success: function(result) {
$(".delivery-individual").html(result);
}
});
</script>
外部文件:
<h3>Temakis</h3>
<?php
$args = array(
\'post_type\' => \'post\',
\'category_name\' => \'temakis\');
query_posts($args);
while (have_posts()) : the_post();
?>
<div class="item-individual">
<img src="<?php the_field("imagem-produto");?>" width="150" height="150" title="<?php echo get_the_title(); ?> "/>
<div class="item-individual-info">
<h4><?php echo get_the_title(); ?></h4>
<p class="descricao-delivery"><? echo get_post_field(\'post_content\'); ?></p>
<p class="valor-delivery">R$ <? the_field("preco"); ?></p>
</div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
请求是可以的,因为我得到了正确的h3。
有人能帮我吗?
谢谢