如何在wordpress中没有页面加载的类别发布

时间:2014-01-28 10:14:51

标签: wordpress

如何在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" );

1 个答案:

答案 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" );