show result value type radio
-
I want to display the value of the type radio option tree,
and the choice of the type of radio that I used to choose the css template from the wordpress theme that I had built,
I searched for the tutorial if else for the radio option tree type and did not find it.
I just used the option tree plugin, can anyone help me?
the code that I use is very simple.
<?php
if ( function_exists( ‘ot_get_option’ ) ) {
$ids = ot_get_option( ‘css_color’, array() );
if ( ! empty( $ids ) )
echo $ids ;
}
?>
- The topic ‘show result value type radio’ is closed to new replies.