为什么我的自定义小部件破坏了另一个小部件?

时间:2013-05-08 作者:janoChen

第一个插件以某种方式破坏了第二个插件(第二个插件的内容根本没有显示):

plugins/featured-images.php:

<?php
/* Plugin Name: Featured Jobs
Plugin URI: [Enter your website URL]
Description: [Enter brief description of plugin]
Version: [Enter version number of plugin (probably 1.0)]
Author: [Enter your name]
Author URI: [Enter your website URL]
*/
class Featured_Jobs extends WP_Widget {

    /**
     * Register widget with WordPress.
     */
    public function __construct() {
        parent::__construct(
            \'featured_jobs\', // Base ID
            \'Featured Jobs\', // Name
            array( \'description\' => __( \'A Foo Widget\', \'text_domain\' ), ) // Args
        );
    }

    /**
     * Front-end display of widget.
     *
     * @see WP_Widget::widget()
     *
     * @param array $args     Widget arguments.
     * @param array $instance Saved values from database.
     */
    public function widget( $args, $instance ) {
        extract( $args );
        $title = apply_filters( \'widget_title\', $instance[\'title\'] );

        echo $before_widget;
        if ( ! empty( $title ) )
            echo $before_title . $title . $after_title;
    ?>
      <ul class="featured-jobs">
      <?php // Create and run custom loop
        $custom_posts = new WP_Query();
        $custom_posts->query(\'post_type=jobs&posts_per_page=8\');
        while ($custom_posts->have_posts()) : $custom_posts->the_post();
      ?>
        <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
      <?php endwhile; ?>
      <li class="see-all-positions"><a href="http://www.pixelmatic.com/open-jobs/">See All Positions >></a></li>
      </ul>

    <?php

        echo $after_widget;
    }

    /**
     * Sanitize widget form values as they are saved.
     *
     * @see WP_Widget::update()
     *
     * @param array $new_instance Values just sent to be saved.
     * @param array $old_instance Previously saved values from database.
     *
     * @return array Updated safe values to be saved.
     */
    public function update( $new_instance, $old_instance ) {
        $instance = array();
        $instance[\'title\'] = strip_tags( $new_instance[\'title\'] );

        return $instance;
    }

    /**
     * Back-end widget form.
     *
     * @see WP_Widget::form()
     *
     * @param array $instance Previously saved values from database.
     */
    public function form( $instance ) {
        if ( isset( $instance[ \'title\' ] ) ) {
            $title = $instance[ \'title\' ];
        }
        else {
            $title = __( \'New title\', \'text_domain\' );
        }
        ?>
        <p>
        <label for="<?php echo $this->get_field_id( \'title\' ); ?>"><?php _e( \'Title:\' ); ?></label> 
        <input class="widefat" id="<?php echo $this->get_field_id( \'title\' ); ?>" name="<?php echo $this->get_field_name( \'title\' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
        </p>
        <?php 
    }

} // class Foo_Widget

// register Foo_Widget widget
add_action( \'widgets_init\', create_function( \'\', \'register_widget( "featured_jobs" );\' ) );

plugins/theme/theme.php:

add_action( \'widgets_init\', create_function( \'\', \'register_widget(   "px_reviews_widget" );\' ) );


class Px_Reviews_Widget extends WP_Widget {

    /**
     * Register widget with WordPress.
     */
    public function __construct() {
        parent::__construct(
            \'px_reviews_widget\', // Base ID
            \'Game - Reviews\', // Name
            array( \'description\' => __( \'Game - Reviews\', \'text_domain\' ), ) // Args
        );
    }

    /**
     * Front-end display of widget.
     *
     * @see WP_Widget::widget()
     *
     * @param array $args     Widget arguments.
     * @param array $instance Saved values from database.
     */
    public function widget( $args, $instance ) {

        if ( !is_singular(\'games\')) { 
            return;
        }

        extract( $args );
        $title = \'Reviews\';//apply_filters( \'widget_title\', $instance[\'title\'] );

        echo $before_widget;
        if ( ! empty( $title ) )
            echo $before_title . $title . $after_title;
        //echo __( \'Hello, World!\', \'text_domain\' );


    $templates = array();

        $templates[] = "game-reviews.php";


    // Backward compat code will be removed in a future release
    locate_template($templates, true);      

        echo $after_widget;
    }

    /**
     * Sanitize widget form values as they are saved.
     *
     * @see WP_Widget::update()
     *
     * @param array $new_instance Values just sent to be saved.
     * @param array $old_instance Previously saved values from database.
     *
     * @return array Updated safe values to be saved.
     */
    public function update( $new_instance, $old_instance ) {
        $instance = array();
        $instance[\'title\'] = strip_tags( $new_instance[\'title\'] );

        return $instance;
    }

    /**
     * Back-end widget form.
     *
     * @see WP_Widget::form()
     *
     * @param array $instance Previously saved values from database.
     */
    public function form( $instance ) {
        /*
        if ( isset( $instance[ \'title\' ] ) ) {
            $title = $instance[ \'title\' ];
        }
        else {
            $title = __( \'New title\', \'text_domain\' );
        }
        */
        ?>
        This widget only show on Game single page
        <?php 
        /*
        ?>
        <p>
        <label for="<?php echo $this->get_field_id( \'title\' ); ?>"><?php _e( \'Title:\' ); ?></label> 
        <input class="widefat" id="<?php echo $this->get_field_id( \'title\' ); ?>" name="<?php echo $this->get_field_name( \'title\' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
        </p>
        <?php 
        */
    }

}
原因可能是什么?

1 个回复
最合适的回答,由SO网友:Tom J Nowell 整理而成

由于PHP语法错误,您的代码失败。

注意事项:

您的问题是由于未能正确缩进代码,导致遗漏了一些内容。编辑器应该能够重新缩进代码,并且应该在键入时自动缩进。这是没有任何借口的,这是完全可以避免的情况,您没有打开错误日志记录。错误应该记录到错误日志文件中,我强烈建议您打开或查找该文件,并在开发时全天候打开它。我还建议您打开WP_DEBUG 常量inwp-config.phpwhile(): end;, 所以始终使用while(){} 相反最好始终使用其中一种方法,而不是同时使用两种方法。准确地说,这是额外的} 造成您的问题。如果不存在其他问题,删除它,您的代码就会按预期工作。我把语法检查的任务交给你做家庭作业。有在线检查器,PHP本身可以检查语法,错误日志将显示它,包括行号和原因。

结束

相关推荐

Using tabs in admin widgets

更新:我应该指出,我在插件/主题选项页面上测试了下面的方法,效果非常好。事实上,我还能够包括jQuery cookie插件,以保留页面加载之间的当前选项卡选择(很好!)。当您有多个小部件选项时,尝试向管理小部件添加选项卡以减少表单占用空间。我正在使用WordPress附带的jQuery UI选项卡。以下是我迄今为止在插件中编写的代码。http://pastebin.com/fe4wdBcp当小部件被拖动到小部件区域时,选项卡似乎呈现为OK,但您无法单击查看第二个选项卡。更糟糕的是,如果刷新窗口小部件页面,