浏览核心文件时,有一些;可用脏路(未测试):
! is_admin() && add_filter( \'wp_nav_menu_items\', \'do_shortcode\' );
! is_admin() && add_filter( \'the_title\', \'do_shortcode\' );
! is_admin() && add_filter( \'walker_nav_menu_start_el\', \'do_shortcode\' );
但我宁愿直接针对菜单标签,例如(未测试):
/**
* Support shortcodes in the menu labels
*/
! is_admin() && add_action( \'nav_menu_link_attributes\', \'wpse_shortcode_in_menu\' );
function wpse_shortcode_in_menu( $atts )
{
add_filter( \'the_title\', \'wpse_do_shortcode\' );
return $atts;
}
function wpse_do_shortcode( $content )
{
remove_filter( current_filter(), __FUNCTION__ );
return do_shortcode( $content );
}