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

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

WordPress:非分層分類法只能在編輯帖子中選擇一個

WordPress:非分層分類法只能在編輯帖子中選擇一個

PHP
慕田峪9158850 2023-08-06 15:37:48
我用此代碼添加了一個分類法function tmc_type_taxonomy()  {    $type = array(        'name'                       => 'Types',        'singular_name'              => 'Type',        'menu_name'                  => 'Types',        'all_items'                  => 'All Types',        'parent_item'                => 'Parent Type',        'parent_item_colon'          => 'Parent Type:',        'new_item_name'              => 'New Type Name',        'add_new_item'               => 'Add New Type',        'edit_item'                  => 'Edit Type',        'update_item'                => 'Update Type',        'separate_items_with_commas' => 'Separate Types with commas',        'search_items'               => 'Search Types',        'add_or_remove_items'        => 'Add or remove Types',        'choose_from_most_used'      => 'Choose from the most used Types',    );    $args = array(        'labels'                     => $type,        'hierarchical'               => false,        'rewrite'                    => array( 'slug' => 'type' ),        'public'                     => true,        'show_ui'                    => true,        'show_admin_column'          => true,        'show_in_nav_menus'          => true,        'show_tagcloud'              => true,        'show_in_rest'               => true,       );    register_taxonomy( 'tmc_type', 'post', $args );}add_action( 'init', 'tmc_type_taxonomy', 0 );它的顯示就像 WordPress 中的標簽一樣。我想把它做成一個收音機盒子。為此,我嘗試分層顯示復選框,但我無法使用代碼通過 jquery 將其更改為無線電function checktoradio(){    echo '<script type="text/javascript">jQuery("#id").each(function(){this.type="radio"});</script>';}add_action('admin_footer', 'checktoradio')因為編輯帖子頁面的側(cè)邊欄是動態(tài)加載的。因此,我無法修改該復選框,因為它尚未在頁腳掛鉤中創(chuàng)建。如何更改為僅選擇一項?
查看完整描述

1 回答

?
慕哥9229398

TA貢獻1877條經(jīng)驗 獲得超6個贊

根據(jù)問題的范圍,您需要通過以下方式將 JavaScript 代碼掛接到“admin_enqueue_scripts”掛鉤:


// custom css and js

add_action('admin_enqueue_scripts', 'cstm_css_and_js');

 

function cstm_css_and_js() {

   wp_enqueue_style('admin_css', get_template_directory_uri().'/css/admin.css');

   wp_enqueue_script( 'admin-js', get_template_directory_uri().'/js/admin.js', array('jquery-core'), false, true );

}

您應該將代碼放入“admin.js”文件中。


這是研究有關此掛鉤的更多信息的鏈接: https://developer.wordpress.org/reference/hooks/admin_enqueue_scripts/# :~:text=admin_enqueue_scripts%20is%20the%20proper%20hook,informs%20the%20current%20admin %20頁。


但老實說,您需要關注如何在網(wǎng)站后端應用更改。


查看完整回答
反對 回復 2023-08-06
  • 1 回答
  • 0 關注
  • 132 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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