
نوشته اصلی توسط
bloodthirstyb
PHP Notice: Undefined index: number in /home/weblians/public_html/khabareparsi.com/test/wp-content/themes/Farhang.1/sidbar/widgets/box-12.php on line 28
لاین 26 و 27 و 28 هم اینا هستن :
کد PHP:
$title = $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base );
$category = $instance['category'];
$number = $instance['number'];
Notice هست، ارور نیست، الان هیچ اروری ندارید. حذف میکنید مشکل حل میشود :
کد:
<?php
$args = array('parent' => 301);
$categories = get_categories( $args );
foreach($categories as $category)
{
echo '<p><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "نمایش همه خبر های %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
}
?>