PHP ช่วยผมทีครับ รบกวนช่วยดู code ให้ผมทีครับ มัน error
รบกวนช่วยดู code ให้ทีครับ
error ขึ้นยังงี้
Code
Warning: array_slice() expects parameter 1 to be array, null given in /home/ajabahey/public_html/barakuustyle/wp-content/themes/barakuustyle/page-youtube.php on line 82
Warning: Invalid argument supplied for foreach() in /home/ajabahey/public_html/barakuustyle/wp-content/themes/barakuustyle/page-youtube.php on line 83
Warning: array_slice() expects parameter 1 to be array, null given in /home/ajabahey/public_html/barakuustyle/wp-content/themes/barakuustyle/page-youtube.php on line 114
Warning: Invalid argument supplied for foreach() in /home/ajabahey/public_html/barakuustyle/wp-content/themes/barakuustyle/page-youtube.php on line 115
ไฟล์นี้ครับ
โค๊ด:
Code
<?php
/*
Template Name: Youtube Videos
*/
?>
<?php get_header(); ?>
<?php
global $wp_query;
$postid = $wp_query->post->ID;
$ytfeed = get_post_meta( $post->ID, 'ytfeed', true );
if ( get_post_meta( $postid, 'post_featpages', true ) == "Yes" ) { ?>
<?php include (TEMPLATEPATH . '/featured-pages.php'); ?>
<?php } ?>
<?php if ( get_post_meta( $postid, 'post_featcontent', true ) == "Full Width Featured Content Slider" ) { ?>
<?php include (TEMPLATEPATH . '/featured-wide.php'); ?>
<?php } ?>
<div id="page" class="clearfix">
<div id="contentleft">
<?php if ( get_post_meta( $postid, 'post_featcontent', true ) == "Narrow Width Featured Content Slider" ) { ?>
<?php include (TEMPLATEPATH . '/featured-narrow.php'); ?>
<?php } ?>
<?php if ( get_post_meta( $postid, 'post_featvideo', true ) == "Yes" ) { ?>
<?php include (TEMPLATEPATH . '/featured-vids.php'); ?>
<?php } ?>
<?php if ( get_post_meta( $postid, 'post_featgalleries', true ) == "Yes" ) { ?>
<?php include (TEMPLATEPATH . '/featured-galleries.php'); ?>
<?php } ?>
<div id="content" class="maincontent">
<?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?>
<?php include (TEMPLATEPATH . '/banner468.php'); ?>
<div class="post entry clearfix">
<h1 class="page-title" id="post-<?php the_ID(); ?>"><?php the_title(); ?></h1>
<?php the_post(); ?>
<?php $content = get_the_content(); ?>
<?php if ( ! empty( $content ) ) : ?>
<?php the_content(); ?>
<?php endif; ?>
<script type="text/javascript">
//<![CDATA[
jQuery(window).load(function() {
jQuery('#featured-yt-vids-page').flexslider({
slideshow: false,
slideshowSpeed: 0000,
directionNav:false,
manualControls: '.flexslide-custom-controls li a',
controlsContainer: '.container'
});
});
//]]>
</script>
<div class="featured videos yt-temp">
<div class="container">
<div id="featured-yt-vids-page" class="flexslider">
<ul class="slides">
<?php
$count = 1;
// Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss($ytfeed);
//set number of items to display
$maxitems = -1;
$items = array_slice($rss->items, 0, $maxitems);
foreach ( $items as $item ) :
$youtubeid = strchr($item['link'],'=');
$youtubeid = substr($youtubeid,1,11);
?>
<li id="feature-yt-vid-<?php echo $count; ?>">
<div class="feature-video">
<div class="video">
<iframe width="300" height="250" src="http://www.youtube.com/embed/<?php echo $youtubeid; ?>" frameborder="0"></iframe>
</div>
</div>
</li>
<?php $count = $count + 1; endforeach; ?>
</ul>
</div>
<div class="controls-container clearfix">
<ul class="flexslide-custom-controls clearfix">
<?php
$count = 1;
// Get RSS Feed(s)
include_once(ABSPATH . WPINC . '/rss.php');
$rss = fetch_rss($ytfeed);
//set number of items to display
$maxitems = -1;
$items = array_slice($rss->items, 0, $maxitems);
foreach ( $items as $item ) :
$youtubeid = strchr($item['link'],'=');
$youtubeid = substr($youtubeid,1,11);
?>
<li class="clearfix">
<a class="clearfix" href="#" title="<?php echo $item['title']; ?>">
<img class="yt-thumb" src="http://img.youtube.com/vi/<?php echo $youtubeid; ?>/0.jpg" alt="<?php echo $item['title']; ?>" title="<?php echo $item['title']; ?>" />
<span class="yt-title"><?php echo $item['title']; ?></span>
</a>
</li>
<?php if ( $count%3 == 0 ) { ?>
<li class="clear-row"></li>
<?php } ?>
<?php $count = $count + 1; endforeach; ?>
</ul>
</div>
</div>
</div>
</div>
</div>
<?php include (TEMPLATEPATH . '/sidebar-narrow.php'); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
ขอบคุณมากครับTag : PHP, HTML/CSS
ประวัติการแก้ไข 2012-06-08 07:00:10
Date :
2012-06-07 19:07:15
By :
fluckcat
View :
1240
Reply :
8
ผมต้องแก้ตรงไหนมั่งอ่ะครับ
มือใหม่เพิ่งหัดทำ
ขอบคุณสำหรับคำแนะนำครับ
Date :
2012-06-07 21:38:41
By :
fluckcat
อันที่จริง Code ให้นำมาโพสไว้ในนี้เลยครับ ทำให้ดาวน์โหลด ส่วนน้อยจะมีคนดูให้ครับ
Date :
2012-06-07 21:39:10
By :
mr.win
ประวัติการแก้ไข 2012-06-08 07:00:34
Date :
2012-06-07 21:55:24
By :
fluckcat
Date :
2012-06-08 08:23:42
By :
fluckcat
ช่วยทีนะครับ
Date :
2012-06-08 13:10:40
By :
fluckcat
Code (PHP)
$items = array_slice($rss->items, 0, $maxitems);
เช็คดูว่า $rss->items มีค่าไหม และเป็นค่าประเภท Array หรือเปล่า
ส่วน Error Foreach ก็เป็นผลตามมาจากว่า $items ไม่มีค่ามา Foreach เลย error
Date :
2012-06-08 13:31:02
By :
katwalks
ขอโทดทีนะครับเราจะใช้วิธีไหน check ได้อ่ะครับ
ผมลอง search หาแล้วมัน ให้ใส่โค๊ด check แต่มันก็ไม่เกิดอะไรขึ้นอะคับ
ช่วยทีนะครับ ไม่รู้จริงๆ
หรือเราสามารถแก้ให้มันไม่ต้อง
ขอบคุณมากครับ
Date :
2012-06-08 15:30:28
By :
fluckcat
Load balance : Server 02