Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ashley Chasakwa
3,525 PointsPlease help do not know what am doing wrong . Below the my_plugin_widget class, add a function named my_plugin_register
function my_plugin_register_widget( ) { register_widget ('My_Plugin_Widget'); } ?>
<?php
class My_Plugin_Widget extends WP_Widget {
function my_plugin_widget() {
parent::__construct( false, 'My Plugin Widget' );
}
function widget( $args, $instance) {
extract ( $args );
$title = apply_filters( 'widget_title', $instance[ 'title']);
}
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']);
require ('inc/widget-fields.php');
}
function my_plugin_register_widgets() {
register_widgets('My_Plugin_Widgets');
}
add_action ('widgets_init'. 'my_plugin_register_widgets' );
?>