📜  如何使用 php 代码示例创建简码

📅  最后修改于: 2022-03-11 14:54:45.438000             🧑  作者: Mango

代码示例2
// function that runs when shortcode is called
function wpb_demo_shortcode() { 
 
// Things that you want to do. 
$message = 'Hello world!'; 
 
// Output needs to be return
return $message;
} 
// register shortcode
add_shortcode('greeting', 'wpb_demo_shortcode');