wp/wp-content/themes/IN-MOTION-package-u1/in-motion/functions/widget-posts.php
changeset 16 a86126ab1dd4
parent 0 d970ebf37754
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
    15 
    15 
    16 /*-----------------------------------------------------------------------------------*/
    16 /*-----------------------------------------------------------------------------------*/
    17 /*	Widget Setup
    17 /*	Widget Setup
    18 /*-----------------------------------------------------------------------------------*/
    18 /*-----------------------------------------------------------------------------------*/
    19 	
    19 	
    20 function post_Widget() {
    20 function __construct() {
    21 
    21 
    22 	$widget_options = array(
    22 	$widget_options = array(
    23 		'classname' => 'post_widget',
    23 		'classname' => 'post_widget',
    24 		'description' => 'Custom post widget.');
    24 		'description' => 'Custom post widget.');
    25 
    25 
    27 		'width' => 200,
    27 		'width' => 200,
    28 		'height' => 400,
    28 		'height' => 400,
    29 		'id_base' => 'post_widget'
    29 		'id_base' => 'post_widget'
    30 	);
    30 	);
    31 
    31 
    32 	$this->WP_Widget( 'post_widget', 'Post Widget', $widget_options, $control_options );
    32 	parent::__construct( 'post_widget', 'Post Widget', $widget_options, $control_options );
    33 	
    33 	
    34 }
    34 }
    35 
    35 
    36 
    36 
    37 
    37