Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
wordpress で pjax を使用しようとしています。しかし、ajax call を介してコンテンツを取得するリンクをクリックしようとすると、何も起こらず、ページが正常にロードされ、firebug コンソールに 301 aborted error が表示されます。誰でも助けることができますか?
WordPressでajaxを使用している場合は、以下の例のように、テーマのfunction.phpファイルでアクションを実行します。
add_action('wp_ajax_do_ajax', 'our_ajax_function'); function our_ajax_function(){ // now we'll write what the server should do with our request here }
それが役立つことを願っています:)