2014-02-22 1 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

관련 문제