wordpress 3.0 php özel alanlar sorunu

0 Cevap php

Bu wordpress, farklı site tho bir önceki sürümünde mükemmel çalıştı. Birkaç wp sayfalarında bir özel alan denilen flaş var ama "sonuçları boş ise baskılı" o varsaymak tutar. Herhangi bir bu iş olmaz neden fikir?

<?php 
if ( function_exists('get_post_custom_values') ) 
  {    
   $mykey_values = get_post_custom_values('flash');
   if(count($mykey_values) > 0)
    {

foreach ( $mykey_values as $key => $value ) 
 { 
  echo "$value";


 }
    }
   else
    {
     //printed if results are empty
   echo("mainPage.swf");
    } 

  } 
 else
  {
   //printed if function doesn't exist
   echo("mainPage.swf");
  }
?>

0 Cevap