Search Exclude - Version 1.0.4

Version Description

  • Fixed links on settings page with list of excluded items
  • Tested up to WP 3.9
Download this release

Release Info

Developer pronskiy
Plugin Icon 128x128 Search Exclude
Version 1.0.4
Comparing to
See all releases

Code changes from version 1.0.3 to 1.0.4

Files changed (3) hide show
  1. options.php +1 -2
  2. readme.txt +6 -2
  3. search-exclude.php +1 -1
options.php CHANGED
@@ -1,5 +1,4 @@
1
  <div class="wrap">
2
- <?php screen_icon(); ?>
3
  <h2>Search Exclude</h2>
4
  <?php if (empty($excluded)):?>
5
  <p>No items excluded from the search results yet.</p>
@@ -17,7 +16,7 @@
17
  <?php while ( $query->have_posts() ) : $query->the_post();?>
18
  <tr valign="top" class="post-<?php the_ID()?> page type-page status-draft author-self" >
19
  <th class="check-column" scope="row"><input type="checkbox" value="<?php the_ID()?>" name="sep_exclude[]" checked="checked"></th>
20
- <td class="post-title page-title column-title"><strong><a title="Edit “<?php the_title()?>”" href="/wp-admin/post.php?post=<?php the_ID()?>&action=edit" class="row-title"><?php the_title()?></a></strong>
21
  <td class="author column-author"><?php echo get_post_type();?></td>
22
  </tr>
23
  <?php endwhile; ?>
1
  <div class="wrap">
 
2
  <h2>Search Exclude</h2>
3
  <?php if (empty($excluded)):?>
4
  <p>No items excluded from the search results yet.</p>
16
  <?php while ( $query->have_posts() ) : $query->the_post();?>
17
  <tr valign="top" class="post-<?php the_ID()?> page type-page status-draft author-self" >
18
  <th class="check-column" scope="row"><input type="checkbox" value="<?php the_ID()?>" name="sep_exclude[]" checked="checked"></th>
19
+ <td class="post-title page-title column-title"><strong><a title="Edit “<?php the_title()?>”" href="<?php echo site_url()?>/wp-admin/post.php?post=<?php the_ID()?>&action=edit" class="row-title"><?php the_title()?></a></strong></td>
20
  <td class="author column-author"><?php echo get_post_type();?></td>
21
  </tr>
22
  <?php endwhile; ?>
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: pronskiy
3
  Tags: admin, plugin, search
4
  Requires at least: 3.3
5
- Tested up to: 3.8
6
- Stable tag: 1.0.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -28,6 +28,10 @@ You can also view the list of all the items that are excluded from search on the
28
 
29
  == Changelog ==
30
 
 
 
 
 
31
  = 1.0.3 =
32
  * Added support for excluding attachments from search results
33
  * Tested up to WP 3.8
2
  Contributors: pronskiy
3
  Tags: admin, plugin, search
4
  Requires at least: 3.3
5
+ Tested up to: 3.9
6
+ Stable tag: 1.0.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
28
 
29
  == Changelog ==
30
 
31
+ = 1.0.4 =
32
+ * Fixed links on settings page with list of excluded items
33
+ * Tested up to WP 3.9
34
+
35
  = 1.0.3 =
36
  * Added support for excluding attachments from search results
37
  * Tested up to WP 3.8
search-exclude.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Search Exclude
4
  Description: Exclude any page or post from the WordPress search results by checking off the checkbox.
5
- Version: 1.0.3
6
  Author: Roman Pronskiy
7
  Author URI: http://pronskiy.com
8
  */
2
  /*
3
  Plugin Name: Search Exclude
4
  Description: Exclude any page or post from the WordPress search results by checking off the checkbox.
5
+ Version: 1.0.4
6
  Author: Roman Pronskiy
7
  Author URI: http://pronskiy.com
8
  */