Title: Title doesn&#039;t appear
Last modified: August 20, 2016

---

# Title doesn't appear

 *  [renathy](https://wordpress.org/support/users/renathy/)
 * (@renathy)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/title-doesnt-appear/)
 * When I add this widget to sidebar, it doesn’t show title.
    I have added title
   in administration panel for this widget, however, it doesn’t appear.
 * I tried to debug some code and I found out thet dynamic_sidebar doesn’t get widgets
   title.
 * Why it is so? Any suggestions how to find out this?
 * [http://wordpress.org/extend/plugins/recent-searches-widget/](http://wordpress.org/extend/plugins/recent-searches-widget/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Joelle](https://wordpress.org/support/users/joelle/)
 * (@joelle)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/title-doesnt-appear/#post-3367247)
 * Hi renathy,
 * Did you ever get an answer to this? I’d love to resolve the same issue. Thanks!
 *  Thread Starter [renathy](https://wordpress.org/support/users/renathy/)
 * (@renathy)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/title-doesnt-appear/#post-3367248)
 * No. Title doesn’t appear.
 *  [Caiapfas](https://wordpress.org/support/users/caiapfas/)
 * (@caiapfas)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/title-doesnt-appear/#post-3367293)
 * here is the fix. I’m positive it could be better, but it works
 * //wp-content/plugins/recent-searches-widget/recent-searches-widget.php
    find 
   line 104 and oyu should see
 *     ```
       extract( $args );
       ```
   
 * paste this code after it
 *     ```
       // Caiapfas quick and dirty patch 3/13/2013
       			$options = get_option( 'recent_searches_widget' );
       			if ( !is_array( $options ) ) {
       				$options = $this->get_default_options();
       			}
       			$title = $options['title'];
       			$max = $options['max'];
       			// end code
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Title doesn't appear’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/recent-searches-widget.svg)
 * [Recent Searches Widget](https://wordpress.org/plugins/recent-searches-widget/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/recent-searches-widget/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/recent-searches-widget/)
 * [Active Topics](https://wordpress.org/support/plugin/recent-searches-widget/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/recent-searches-widget/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/recent-searches-widget/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Caiapfas](https://wordpress.org/support/users/caiapfas/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/title-doesnt-appear/#post-3367293)
 * Status: not resolved