text 对Radiobox的分类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 对Radiobox的分类相关的知识,希望对你有一定的参考价值。
/**
* Limita a seleção de Status para apenas 1 por vez
*/
function wpse_139269_term_radio_checklist( $args ) {
if ( ! empty( $args['taxonomy'] ) && $args['taxonomy'] === 'status_acervo' /* <== Change to your required taxonomy */ ) {
if ( empty( $args['walker'] ) || is_a( $args['walker'], 'Walker' ) ) { // Don't override 3rd party walkers.
if ( ! class_exists( 'WPSE_139269_Walker_Category_Radio_Checklist' ) ) {
/**
* Custom walker for switching checkbox inputs to radio.
*
* @see Walker_Category_Checklist
*/
class WPSE_139269_Walker_Category_Radio_Checklist extends Walker_Category_Checklist {
function walk( $elements, $max_depth, $args = array() ) {
$output = parent::walk( $elements, $max_depth, $args );
$output = str_replace(
array( 'type="checkbox"', "type='checkbox'" ),
array( 'type="radio"', "type='radio'" ),
$output
);
return $output;
}
}
}
$args['walker'] = new WPSE_139269_Walker_Category_Radio_Checklist;
}
}
return $args;
}
add_filter( 'wp_terms_checklist_args', 'wpse_139269_term_radio_checklist' );
以上是关于text 对Radiobox的分类的主要内容,如果未能解决你的问题,请参考以下文章
使用 JQuery 验证 RadioBox 的更好方法
3列表中的radiobox集合
如何通过值让radiobox被选中
css CSS-Selektoren:Aktive Checkbox oder Radiobox hervorheben
winform中DataGridView使用DataGridViewCheckBoxColumn实现RadioBox单选功能
jquery怎么自动触发radio的点击事件