在小部件中使用短程式碼
add_filter( 'widget_text', 'shortcode_unautop' );
add_filter( 'widget_text', 'do_shortcode' );enter code here
將其新增到外掛或 functions.php
檔案以在小部件中啟用短程式碼。該程式碼首先停止 WordPress 將換行符轉換為段落標記,然後讓短程式碼解析小部件。兩條線的順序很重要。
add_filter( 'widget_text', 'shortcode_unautop' );
add_filter( 'widget_text', 'do_shortcode' );enter code here
將其新增到外掛或 functions.php
檔案以在小部件中啟用短程式碼。該程式碼首先停止 WordPress 將換行符轉換為段落標記,然後讓短程式碼解析小部件。兩條線的順序很重要。