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>
不幸的是我得到這個錯誤注意:嘗試獲取第5行非對象的屬性。第5行是$ cat_id – Mailmulah
我測試了相同的代碼,它對我來說工作正常。你能分享你的代碼嗎? – jakob
檢查更新的答案..我測試了它,它工作正常 – jakob