我不斷收到某種語法錯誤。它說:PHP錯誤,意外結束。 Functions.php文件
[09-Jan-2013 04:17:17 UTC] PHP Parse error: syntax error, unexpected ',' in functions.php on line 730
我已刪除了「」但後來我得到另一個錯誤,說意外‘)’,然後意外「;),最後意外‘$結束’
任何人有任何想法我沒做什麼?
/*----------------------------------------/
POST LIST THUMBS
/----------------------------------------*/
if (!function_exists('fb_AddThumbColumn') && function_exists('add_theme_support')) {
function fb_AddThumbColumn($cols) {
$cols['thumbnail'] = __('Thumbnail');
return $cols;
}
function fb_AddThumbValue($column_name, $post_id) {
$width = (int) 45;
$height = (int) 45;
if ('thumbnail' == $column_name) {
// thumbnail of WP 2.9
$thumbnail_id = get_post_meta($post_id, '_thumbnail_id', true);
// image from gallery
$attachments = get_children(array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image'));
if ($thumbnail_id)
$thumb = wp_get_attachment_image($thumbnail_id, array($width, $height), true);
elseif ($attachments) {
foreach ($attachments as $attachment_id => $attachment) {
$thumb = wp_get_attachment_image($attachment_id, array($width, $height), true);
}
}
if (isset($thumb) && $thumb) {
echo $thumb;
} else {
echo __('None');
}
}
}
// for posts
add_filter('manage_posts_columns', 'fb_AddThumbColumn');
add_action('manage_posts_custom_column', 'fb_AddThumbValue', 10, 2);
// for pages
//add_filter('manage_pages_columns', 'fb_AddThumbColumn');
//add_action('manage_pages_custom_column', 'fb_AddThumbValue', 10, 2);
}, get_stylesheet_directory_uri() .);
//------ SIDEBARS ------//
//require_once(LN_FRAMEWORK .
哪條線是730線? –
什麼是'},get_stylesheet_directory_uri()。 );'線? – inhan
這是730行: },get_stylesheet_directory_uri()。 ); –