只要在function.php輸入以下代碼即可
// 定義您的短代碼函數
function your_shortcode_function() {
// 在此處定義短代碼的輸出內容
return '[改成要顯示的短代碼]';
}
add_shortcode('your_shortcode', 'your_shortcode_function');
// 將短代碼添加到每篇文章的內容之後
function append_shortcode_to_content($content) {
if (is_single() && is_main_query()) {
// 將短代碼附加到文章內容之後
$content .= do_shortcode('[your_shortcode]');
}
return $content;
}
add_filter('the_content', 'append_shortcode_to_content');