前提・実現したいこと
新規で記事を作成して公開した時に、jsファイルを読み込ませたいです。
最終的にはjsファイル内で、特定のAPIに対してajaxを使ってPOST通信でデータ(記事のタイトルなど)を投げるのですが、
それ以前のとこで詰まってしまいました。
該当のソースコード
function after_posting_script($new_status, $old_status, $post){ if($new_status == 'publish' && $post->post_type == 'post'){ switch($old_status){ case 'draft': case 'pending': case 'auto-draft': case 'future': case 'new': wp_enqueue_script( 'add-script', get_theme_file_uri('/name.js'), array('jquery'), '20190101', false ); } } } add_action('transition_post_status', 'after_posting_script', 10, 3);
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/12/17 01:55