我有一个wp db。我添加了一个表“wp\\u mapmus”
现在我想在贴子页面上用短代码显示这些数据。但有一个错误。我对php不太了解。我只使用相同的插件。正确的代码是什么?
我的代码:
function veri_cek($atts, $content = null) { extract( shortcode_atts( array( \'id\' => \'0\', ), $atts ) );
global $wpdb;
$table = $wpdb->prefix . \'mapmus\';
$sql = \'SELECT point FROM \'.$table.\' WHERE id = \'.$id.\'\';
$results = $wpdb->get_results($sql);
foreach ( $results as $result )
{
return \' Point: \'.$result.\' \';
}
}
add_shortcode( \'veri\', \'veri_cek\' );