Changeset 1774886
- Timestamp:
- 11/24/2017 06:52:05 PM (8 years ago)
- Location:
- nice-portfolio/trunk
- Files:
-
- 6 edited
-
admin/post-types/portfolio/metaboxes.php (modified) (2 diffs)
-
integrations/nice-likes.php (modified) (1 diff)
-
lib/custom-post-type/post-type/create/class-post-type-create-responder.php (modified) (1 diff)
-
lib/plugin-api/template/class-template-handler.php (modified) (1 diff)
-
nice-portfolio.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nice-portfolio/trunk/admin/post-types/portfolio/metaboxes.php
r1471140 r1774886 301 301 * @param $title 302 302 * 303 * @return string |void303 * @return string 304 304 */ 305 305 function nice_portfolio_project_title_placeholder_text( $title ) { … … 335 335 * @since 1.0 336 336 * 337 * @param string $content 338 * @return string|void 337 * @param string $content 338 * 339 * @return string 339 340 */ 340 341 function nice_portfolio_thumbnail_meta_box_html( $content ) { -
nice-portfolio/trunk/integrations/nice-likes.php
r1471140 r1774886 395 395 } 396 396 endif; 397 398 if ( ! function_exists( 'nice_portfolio_likes_custom_column_context' ) ) : 399 add_filter( 'nice_likes_posts_custom_column_context', 'nice_portfolio_likes_custom_column_context', 10, 2 ); 400 /** 401 * Modify custom columns context for project lists. 402 * 403 * @since 1.0.3 404 * 405 * @param string $context 406 * @param string $post_type 407 * 408 * @return string 409 */ 410 function nice_portfolio_likes_custom_column_context( $context, $post_type ) { 411 if ( nice_portfolio_post_type_name() === $post_type ) { 412 $context = 'portfolio'; 413 } 414 415 return $context; 416 } 417 endif; -
nice-portfolio/trunk/lib/custom-post-type/post-type/create/class-post-type-create-responder.php
r1471140 r1774886 34 34 * Schedule post types and taxonomies to be registered. 35 35 */ 36 add_action( 'init', array( $this, 'register' ) );36 add_action( 'init', array( $this, 'register' ), 0 ); 37 37 38 38 /** -
nice-portfolio/trunk/lib/plugin-api/template/class-template-handler.php
r1471140 r1774886 134 134 135 135 $template_paths = array_map( 'trailingslashit', $file_paths ); 136 $template_paths = apply_filters( 'nice_portfolio_template_paths', $template_paths );137 136 138 137 return $template_paths; -
nice-portfolio/trunk/nice-portfolio.php
r1685269 r1774886 16 16 * Plugin URI: https://nicethemes.com/product/nice-portfolio 17 17 * Description: A great portfolio plugin to show your work to the world in a clean, responsive and beautiful way. You can show your projects in a specific page, using a shortcode, widgets or template tags. 18 * Version: 1.0. 218 * Version: 1.0.3 19 19 * Author: NiceThemes 20 20 * Author URI: https://nicethemes.com -
nice-portfolio/trunk/readme.txt
r1685269 r1774886 3 3 Tags: portfolio, projects, widget, shortcode, template-tag, services, responsive, gallery, slide 4 4 Requires at least: 3.6 5 Tested up to: 4.8 6 Stable tag: 1.0.2 5 Tested up to: 4.9 6 Requires PHP: 5.3 7 Stable tag: 1.0.3 7 8 License: GPLv2 or later 8 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 199 200 == Changelog == 200 201 202 = 1.0.3 = 203 * Improvement: Add compatibility with Nice Likes custom post columns. 204 201 205 = 1.0.2 = 202 206 * Fix: Obtain admin path using `ABSPATH` constant.
Note: See TracChangeset
for help on using the changeset viewer.