第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

每當(dāng)創(chuàng)建另一個(gè)自定義帖子類型時(shí)創(chuàng)建自定義帖子類型

每當(dāng)創(chuàng)建另一個(gè)自定義帖子類型時(shí)創(chuàng)建自定義帖子類型

PHP
幕布斯7119047 2022-01-14 17:05:41
我正在嘗試向我的 Wordpress 網(wǎng)站添加一項(xiàng)功能,即每次添加帖子(自定義帖子類型)時(shí),都會創(chuàng)建另一個(gè)帖子(不同的自定義帖子類型)。我嘗試在我的函數(shù)文件中添加一個(gè)動作,但它似乎不起作用。函數(shù).phpfunction add_notification($post_id) {    global $wpdb;    $post_type = get_post_type($post_id);    if($post_type == 'exercises'){        $title = "BLA";        $post_id_new = wp_insert_post(            array(                'comment_status'    =>  'closed',                'ping_status'       =>  'closed',                'post_title'        =>  $title,                'post_status'       =>  'publish',                'post_type'     =>  'notification'            )        );    }}add_action('publish_post', 'add_notification');我也嘗試過使用其他鉤子,如 new_to_publish 和 publish_post有了這個(gè),當(dāng)我添加一個(gè)練習(xí)帖子時(shí),我期待有一個(gè)新帖子(通知)。我認(rèn)為這是我忘記的愚蠢的事情,但我已經(jīng)陷入了這個(gè)問題已經(jīng)有 3 天了。
查看完整描述

1 回答

?
飲歌長嘯

TA貢獻(xiàn)1951條經(jīng)驗(yàn) 獲得超3個(gè)贊

對于自定義帖子類型,我們必須使用像 add_action('publish_custom-post-name','function'); 這樣的鉤子。在您的情況下,您必須使用如下所示


function add_notification($post_id) {

    global $wpdb;

    $post_type = get_post_type($post_id);

    if($post_type == 'exercises'){

        $title = "BLA";

        $post_id_new = wp_insert_post(

            array(

                'comment_status'    =>  'closed',

                'ping_status'       =>  'closed',

                'post_title'        =>  $title,

                'post_status'       =>  'publish',

                'post_type'     =>  'notification'

            )

        );

    }

}

add_action('publish_exercises', 'add_notification');

請?jiān)囋囘@個(gè)。如果有任何疑問,請隨時(shí)詢問。


查看完整回答
反對 回復(fù) 2022-01-14
  • 1 回答
  • 0 關(guān)注
  • 155 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號