2016-07-24 64 views
0

我有這樣的代碼(調用從主題面板中定義的類別):

<?php query_posts ('ignore_sticky_posts=1&showposts=1&cat='.get_cat_id 
($up_options->category1) 
); 

一切工作正常,但需要在情況下,添加isset類別沒有定義。

我給isset這樣的:

<?php query_posts ('ignore_sticky_posts=1&showposts=1&cat='.get_cat_id(
(isset($up_options->category1) && $up_options->category1)) 
); 

但沒有奏效。 任何人都可以幫助我嗎?我對PHP很新。

感謝任何幫助。

這裏全碼:

<div class="wrapper"> 
    <?php query_posts ('ignore_sticky_posts=1&showposts=1&cat='.get_cat_id($up_options->category1));  
    if (have_posts()) : 
     while (have_posts()) : the_post();?> 
    <div class="inside"> 
     <div class="title"> 
      <h5> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php echo substr(the_title('', '', false), 0, 75); ?>...</a> </h5> 
     </div> 
    </div> 
<?php endwhile; endif; wp_reset_query();?> 
</div> 

回答

0

嘗試這樣的:

$cat_id = get_cat_ID($up_options->category1); 

if($cat_id != null){ 
    query_posts('ignore_sticky_posts=1&showposts=1&cat='.$cat_id); 
} else { 
    echo 'Category not defined'; 
} 

更新

這裏是按照更新問題工作液:

<?php 
    global $up_options; 
    $cat_id = get_cat_ID($up_options->category1); 

    if($cat_id != null) : 
     query_posts ('ignore_sticky_posts=1&showposts=1&cat='.$cat_id);  
     if (have_posts()) : 
      while (have_posts()) : the_post();?> 
     <div class="inside"> 
      <div class="title"> 
       <h5> 
        <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php echo substr(the_title('', '', false), 0, 75); ?>...</a> 
       </h5> 
      </div> 
     </div> 
    <?php endwhile; endif; wp_reset_query(); endif;?> 
+0

不幸的是我得到這個錯誤注意:嘗試獲取第5行非對象的屬性。第5行是$ cat_id – Mailmulah

+0

我測試了相同的代碼,它對我來說工作正常。你能分享你的代碼嗎? – jakob

+0

檢查更新的答案..我測試了它,它工作正常 – jakob