0

我不断收到某种语法错误。它说:

[2013 年 1 月 9 日 04:17:17 UTC] PHP 解析错误:第 730 行的 functions.php 中的语法错误,意外“,”

我已经删除了“,”,但随后我收到另一个错误,上面写着意外的“)”,然后是意外的“;)”,最后是意外的“$end”

有人知道我没有做什么吗?

/*----------------------------------------/
            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 .
4

4 回答 4

0

您的问题出在这一行:

}, get_stylesheet_directory_uri() . );

整条线都是错误的。在几个方面。看起来这是一段不小心粘贴到错误位置的代码。

你知道它应该做什么吗?如果没有,请放下整条线,然后离开}那里。

于 2013-01-09T15:16:56.847 回答
0

你可能错过了}某个地方。确保您使用的是带有语法高亮和括号匹配的代码编辑器,并使用它来检查您的括号。

于 2013-01-09T04:27:51.220 回答
0

//-------- 侧边栏 ------//

require_once(LN_FRAMEWORK)在您的代码中您缺少)。( 和 ) <-- 他们需要匹配

于 2013-01-09T05:01:28.610 回答
0
require_once(LN_FRAMEWORK . 

应该

require_once(LN_FRAMEWORK);
于 2013-01-09T05:02:38.533 回答