PageLines template – custom widget – create and add
-
Hi, I need to cerate and add a widget for view an extract from the mysql database to my website with PageLines template. In regular use templates inserted code (see you bellow) into function.php, but in pagelines it does not work. I have installed the pagelines-customize and pagelines-pagelines-template-theme. My code widget is trying to insert in your function.php pagelines-customize. In list of widget in wordpress, unfortunately I do not see it.
Can you help me, please? Where is my mistake? Is code correct? Is putting to the file. php correct?Thank you for your help.
class userWidget extends WP_Widget { function userWidget() { parent::WP_Widget(false, $name = 'userWidget'); } function widget($args, $instance) { extract($args); $title = apply_filters('widget_title', $instance['title']); echo $before_widget; if ($title) echo $before_title . $title . $after_title; //place for my code ... echo $after_widget; } function update($new_instance, $old_instance) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); return $instance; } function form($instance) { $title = esc_attr($instance['title']); ?> <p> <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /> </p> <?php } } add_action('widgets_init', create_function('', 'return register_widget("userWidget");'));
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘PageLines template – custom widget – create and add’ is closed to new replies.