您需要添加hide_current
此函数的参数。当您在代码中使用插件函数时,请确保检查该函数是否存在。如果插件被禁用,您的网站将继续工作:)
function polylang_flags_shortcode() {
ob_start();
if(function_exists(\'pll_the_languages\'))
{
echo \'<ul class="polylang-flags">\';
pll_the_languages(array(
\'show_flags\' => 0,
\'show_names\' => 1,
\'hide_current\' => 1,
));
echo \'</ul>\';
}
return ob_get_clean();
}
add_shortcode(\'POLYLANG\', \'polylang_flags_shortcode\');
我还移动
ul
部分