【发布时间】:2011-09-18 00:09:39
【问题描述】:
代码:
function Sail_wp_get_related_posts(){
global $wpdb, $post;
if(!$post->ID){return;}
$now = current_time('mysql', 1);
$tags = wp_get_post_tags($post->ID);
$taglist = "'" . $tags[0]->term_id. "'";
$tagcount = count($tags);
$m=1;
if ($tagcount > 1) {
for ($i = 1; $i < $tagcount; $i++) {
$taglist = $taglist . ", '" . $tags[$i]->term_id . "'";
}
}
......
我将代码放在functions.php 文件中。调试问题:显示Notice: Undefined offset: 0。
如何纠正?谢谢。
【问题讨论】:
标签: php wordpress wordpress-theming