2014-02-22 112 views
1

我正在一个免费的WordPress分类主题,发现更多的货币符号的想法,但我希望你的价格将在符号后。例如。 200 $如何更改wordpress中的货币符号位置?

下面的代码:

<section class="thumb_item"> 
<?php if (get_post_meta($post->ID, 'price', true) !== '') { ?> 
<span class="price"><?php 
if(get_option('currency') != ''){ 
echo get_option('currency'); 
}else{ 
echo get_option('currency_symbol'); 
} 
echo get_post_meta($post->ID, 'price', true); 
?></span> 
<?php } ?> 

谢谢您的帮助。

回答

0

答案是改变回声的顺序:

<section class="thumb_item"> 
    <?php if (get_post_meta($post->ID, 'price', true) !== '') { ?> 
     <span class="price"><?php 
     // Moved the following line from the end to here so echos price first 
     echo get_post_meta($post->ID, 'price', true); 
     // Now echo the currency symbol 
     if(get_option('currency') != ''){ 
      echo get_option('currency'); 
     }else{ 
      echo get_option('currency_symbol'); 
     } 
    ?></span> 
<?php } ?> 
+0

非常感谢你!它完美的作品! – Jaytie