??? functions.php ? ??? ?? ???.
add_action( ‘kingkongboard_latest_option_after’, ‘my_custom_option_value’,10 );
function my_custom_option_value(){
echo ‘<option value=”unique_section_list”>???????</option>’;
// ?? ??? ????? ??? ?? ???? ???.
}
add_action(‘kingkongboard_latest_display_before’, ‘my_latest_display_after’, 10, 1);
function my_latest_display_after($attr){
$skin = $attr[‘skin’];
if($skin == ‘unique_section_list’){
add_action(‘kingkongboard_latest_list_after’, ‘my_latest_list_after’, 10, 3);
}
}
function my_latest_list_after($results, $config, $number){
global $wpdb;
$table = $wpdb->prefix.”kingkongboard_meta”;
$results = $wpdb->get_results(“SELECT * FROM $table WHERE board_id = ‘”.$config->bid.”‘ AND section = ‘???????’ order by date DESC limit 5 “);
return $results;
}