我在拉JSON數據並創建我的頁面WordPress的 - 從網頁發送變量主題功能
我的問題是如何從通過RID =值使用簡碼的主題函數文件中的函數使用短代碼 [json_employees]並將RID發送回函數的頁面?
function foobar2_func($atts){
ob_start();
$url = 'https://jdublu.com/api/wrsc/json_employee.php?RID=17965';
$data = file_get_contents($url);
$items = str_replace('<p></p>', '', $items);
$items = json_decode($data, true);
?>
add_shortcode('json_employees', 'foobar2_func');
你有沒有試着用'shortcode_atts'? – vel