如何在wordpress中按页面加载按类别发帖。
$.get(
{
'action' : 'get_post_title',
'cat_id' : catid,
'pathname' : pathname,
'url' : 'new.php'
},
function( response )
{
$('#columns').html(response).hide().fadeIn(2000);
$("#column").hide();
}, "html" );
答案 0 :(得分:0)
首先在function.php文件中创建一个函数 和ajax网址是admin-ajax.php
$.get( ajax_request_url,
{
'action' : 'get_post_title',
'cat_id' : catid,
'pathname' : pathname
},
function( response )
{
$('#columns').html(response).hide().fadeIn(2000);
$("#column").hide();
}, "html" );