Content Views – Post Grid & List for WordPress - Version 1.3.1.5

Version Description

  • Test up to 4.0
Download this release

Release Info

Developer PT Guy
Plugin Icon 128x128 Content Views – Post Grid & List for WordPress
Version 1.3.1.5
Comparing to
See all releases

Code changes from version 1.3.1.4 to 1.3.1.5

README.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: pt-guy
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JGUF974QBRKQE
4
  Tags: post, posts, page, pages, query, queries, search, display, show, grid, layout, author, blog, categories, category, comment, content, custom, editor, filter, Formatting, image, list, meta, plugin, responsive, shortcode, excerpt, title, tag, term, Taxonomy, thumbnail, pagination, date, scrollable, slider, collapsible
5
  Requires at least: 3.3
6
- Tested up to: 3.9.2
7
- Stable tag: 1.3.1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -142,6 +142,9 @@ You can create Unlimited Views, in Unlimited websites
142
 
143
  == Changelog ==
144
 
 
 
 
145
  = 1.3.1.4 =
146
  * Update: Fix some layout problems by influence of "box-sizing" property of Bootstrap
147
  * Improvement: Code improvement for Grid rendering
@@ -251,6 +254,9 @@ You can create Unlimited Views, in Unlimited websites
251
 
252
  == Upgrade Notice ==
253
 
 
 
 
254
  = 1.3.1.4 =
255
  Update: Fix some layout problems by influence of "box-sizing" property of Bootstrap. Improvement: Code improvement for Grid rendering
256
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=JGUF974QBRKQE
4
  Tags: post, posts, page, pages, query, queries, search, display, show, grid, layout, author, blog, categories, category, comment, content, custom, editor, filter, Formatting, image, list, meta, plugin, responsive, shortcode, excerpt, title, tag, term, Taxonomy, thumbnail, pagination, date, scrollable, slider, collapsible
5
  Requires at least: 3.3
6
+ Tested up to: 4.0
7
+ Stable tag: 1.3.1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
142
 
143
  == Changelog ==
144
 
145
+ = 1.3.1.5 =
146
+ * Test up to 4.0
147
+
148
  = 1.3.1.4 =
149
  * Update: Fix some layout problems by influence of "box-sizing" property of Bootstrap
150
  * Improvement: Code improvement for Grid rendering
254
 
255
  == Upgrade Notice ==
256
 
257
+ = 1.3.1.5 =
258
+ Test up to 4.0
259
+
260
  = 1.3.1.4 =
261
  Update: Fix some layout problems by influence of "box-sizing" property of Bootstrap. Improvement: Code improvement for Grid rendering
262
 
admin/content-views-admin.php CHANGED
@@ -70,7 +70,7 @@ class PT_Content_Views_Admin {
70
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
71
 
72
  // Add an action link pointing to the options page.
73
- $plugin_basename = plugin_basename( plugin_dir_path( __DIR__ ) . $this->plugin_slug . '.php' );
74
  add_filter( 'plugin_action_links_' . $plugin_basename, array( $this, 'filter_add_action_links' ) );
75
 
76
  // Filter link of actions in All Views page
@@ -380,7 +380,7 @@ class PT_Content_Views_Admin {
380
  $edit_link = PT_CV_Functions::view_link( $view_id );
381
  $actions['edit'] = '<a href="' . esc_url( $edit_link ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
382
  }
383
-
384
  // Filter actions
385
  $actions = apply_filters( PT_CV_PREFIX_ . 'view_row_actions', $actions, $view_id );
386
 
70
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
71
 
72
  // Add an action link pointing to the options page.
73
+ $plugin_basename = plugin_basename( plugin_dir_path( dirname(__FILE__) ) . $this->plugin_slug . '.php' );
74
  add_filter( 'plugin_action_links_' . $plugin_basename, array( $this, 'filter_add_action_links' ) );
75
 
76
  // Filter link of actions in All Views page
380
  $edit_link = PT_CV_Functions::view_link( $view_id );
381
  $actions['edit'] = '<a href="' . esc_url( $edit_link ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
382
  }
383
+
384
  // Filter actions
385
  $actions = apply_filters( PT_CV_PREFIX_ . 'view_row_actions', $actions, $view_id );
386
 
content-views.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: Content Views
11
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
12
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
13
- * Version: 1.3.1.4
14
  * Author: PT Guy
15
  * Author URI: http://profiles.wordpress.org/pt-guy
16
  * Text Domain: content-views
@@ -27,7 +27,7 @@ if ( ! defined( 'WPINC' ) ) {
27
  /*
28
  * Define Constant
29
  */
30
- define( 'PT_CV_VERSION', '1.3.1.4' );
31
  define( 'PT_CV_FILE', __FILE__ );
32
  $pt_cv_path = plugin_dir_path( __FILE__ );
33
  include_once( $pt_cv_path . 'includes/defines.php' );
10
  * Plugin Name: Content Views
11
  * Plugin URI: http://wordpress.org/plugins/content-views-query-and-display-post-page/
12
  * Description: Query and display <strong>posts, pages</strong> in awesome layouts (<strong>grid, scrollable list, collapsible list</strong>) easier than ever, without coding!
13
+ * Version: 1.3.1.5
14
  * Author: PT Guy
15
  * Author URI: http://profiles.wordpress.org/pt-guy
16
  * Text Domain: content-views
27
  /*
28
  * Define Constant
29
  */
30
+ define( 'PT_CV_VERSION', '1.3.1.5' );
31
  define( 'PT_CV_FILE', __FILE__ );
32
  $pt_cv_path = plugin_dir_path( __FILE__ );
33
  include_once( $pt_cv_path . 'includes/defines.php' );