Posts in Page - Version 1.4.3

Version Description

  • Fix issue with missing wrapping pagination div.
  • Fix a few esc_html_e instances.
Download this release

Release Info

Developer sewmyheadon
Plugin Icon 128x128 Posts in Page
Version 1.4.3
Comparing to
See all releases

Code changes from version 1.4.2 to 1.4.3

admin/views/help-main.php CHANGED
@@ -15,7 +15,7 @@
15
  <div class="wrap">
16
 
17
  <div id="icon-options-general" class="icon32"></div>
18
- <h1><?php esc_attr_e( 'Posts in Page', 'posts-in-page' ); ?></h1>
19
 
20
  <div id="poststuff">
21
 
@@ -32,7 +32,7 @@
32
  <!-- Toggle -->
33
 
34
  <h2 class="hndle">
35
- <span><?php esc_attr_e( 'How to use Posts in Page', 'posts-in-page' ); ?></span>
36
  </h2>
37
 
38
  <div class="inside">
15
  <div class="wrap">
16
 
17
  <div id="icon-options-general" class="icon32"></div>
18
+ <h1><?php esc_html_e( 'Posts in Page', 'posts-in-page' ); ?></h1>
19
 
20
  <div id="poststuff">
21
 
32
  <!-- Toggle -->
33
 
34
  <h2 class="hndle">
35
+ <span><?php esc_html_e( 'How to use Posts in Page', 'posts-in-page' ); ?></span>
36
  </h2>
37
 
38
  <div class="inside">
includes/class-page-posts.php CHANGED
@@ -110,7 +110,7 @@ class ICPagePosts {
110
  $prev_link = $prev ? "<li class='pip-nav-prev'>$prev</li>" : '';
111
  $next_link = $next ? "<li class='pip-nav-next'>$next</li>" : '';
112
 
113
- return "<ul class='pip-nav'>$prev_link $next_link</ul>";
114
  }
115
 
116
  return '';
110
  $prev_link = $prev ? "<li class='pip-nav-prev'>$prev</li>" : '';
111
  $next_link = $next ? "<li class='pip-nav-next'>$next</li>" : '';
112
 
113
+ return "<div class='pip-nav'><ul>$prev_link $next_link</ul></div>";
114
  }
115
 
116
  return '';
posts_in_page.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin Name: Posts in Page
12
  * Plugin URI: https://ivycat.com/wordpress/wordpress-plugins/posts-in-page/
13
  * Description: Easily add one or more posts to any page using simple shortcodes. Supports categories, tags, custom post types, custom taxonomies, and more.
14
- * Version: 1.4.2
15
  * Author: IvyCat, Inc.
16
  * Author URI: https://ivycat.com/wordpress/
17
  * Text Domain: posts-in-page
11
  * Plugin Name: Posts in Page
12
  * Plugin URI: https://ivycat.com/wordpress/wordpress-plugins/posts-in-page/
13
  * Description: Easily add one or more posts to any page using simple shortcodes. Supports categories, tags, custom post types, custom taxonomies, and more.
14
+ * Version: 1.4.3
15
  * Author: IvyCat, Inc.
16
  * Author URI: https://ivycat.com/wordpress/
17
  * Text Domain: posts-in-page
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ivycat, sewmyheadon, anvilzephyr, bradyvercher, jasonm4563, pjacks
3
  Tags: shortcode, pages, posts, custom post types, taxonomy, terms
4
  Requires at least: 3.0
5
  Tested up to: 5.1
6
- Stable tag: 1.4.2
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -158,6 +158,10 @@ We'd love feedback, issues, pull requests, and ideas on the [Posts in Page GitHu
158
 
159
  == Changelog ==
160
 
 
 
 
 
161
  = 1.4.2 =
162
  * Thanks to Brady Vercher (@bradyvercher) for the thorough code review and fixes.
163
  * Cleanup code to better conform to WP Coding standards and remove legacy cruft.
@@ -241,6 +245,9 @@ We'd love feedback, issues, pull requests, and ideas on the [Posts in Page GitHu
241
 
242
  == Upgrade Notice ==
243
 
 
 
 
244
  = 1.4.2 =
245
  * Code review, cleanup. Minor fixes and security updates. Please upgrade.
246
 
3
  Tags: shortcode, pages, posts, custom post types, taxonomy, terms
4
  Requires at least: 3.0
5
  Tested up to: 5.1
6
+ Stable tag: 1.4.3
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
158
 
159
  == Changelog ==
160
 
161
+ = 1.4.3 =
162
+ * Fix issue with missing wrapping pagination div.
163
+ * Fix a few `esc_html_e` instances.
164
+
165
  = 1.4.2 =
166
  * Thanks to Brady Vercher (@bradyvercher) for the thorough code review and fixes.
167
  * Cleanup code to better conform to WP Coding standards and remove legacy cruft.
245
 
246
  == Upgrade Notice ==
247
 
248
+ = 1.4.3 =
249
+ * Pagination bug fix and two minor i18n updates for translatable strings. Please upgrade.
250
+
251
  = 1.4.2 =
252
  * Code review, cleanup. Minor fixes and security updates. Please upgrade.
253