I have created a new post type for testimonials and portfolio. I have created new widget areas,with this
register_sidebar( array( 'name' => __( 'Testimonial Sidebar', 'my-theme' ), 'description' => __( 'Testimonial widgets area', 'my-theme' ), 'id' => 'sidebar-3', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', ) );
I have created page sidebar-testimonial.php
and call them in single-testimonial.php
by get_sidebar('testimonial');
Now my question is, how to create the widget "Recent Testimonials" same as "Recent Post", by dragging it in 'Testimonial sidebar' I can display them in pages.
(http://www.wpbeginner.com/wp-tutorials/how-to-create-a-custom-wordpress-widget/)
– nishant