替换插件模板中的代码

时间:2014-09-17 作者:Twix

在插件中,我有以下代码function:

$return_string .= \'<li class="wpc-category \' . $class . \'"><a href="\'. get_option(\'catalogue_page_url\') .\'">All Products</a></li>\'; 
现在我想提出以下条件:

<?php $currentlang = get_bloginfo(\'language\');
      if($currentlang=="en-US"): ?>
     All Products 
<?php else: ?>Dummy Text
<?php endif;?>
我想更换所有产品。谁能帮帮我吗?

1 个回复
SO网友:shanebp
<?php 
$currentlang = get_bloginfo(\'language\');
if($currentlang=="en-US") 
    $link_text = \'All Products\'; 
else
    $link_text = \'Dummy Text\';
?>

$return_string .= \'<li class="wpc-category \' . $class . \'"><a href="\'. get_option(\'catalogue_page_url\') .\'">\' . $link_text . \'</a></li>\';
结束