Portfolio plugin allows you to create a page containing the information about your past projects.
Use WordPress meta box to upload images from URL or your local storage. Please note that one of the images should be set as 'Featured' - it will be the main image of your portfolio item.
Sometimes during the plugin update the plugin template in your theme is also updated. Meanwhile a backup of the previous template verion is created and it contains the files portfolio-post.php.bak and portfolio.php.bak. You should compare the old files with the new ones and apply the necessary changes to the new files.
'orderby' => 'menu_order', menu_order
orderby (string) - Sort retrieved posts by parameter. Defaults to 'date'. 'none' - No order (available with Version 2.8). 'ID' - Order by post id. Note the captialization. 'author' - Order by author. 'title' - Order by title. 'date' - Order by date. 'modified' - Order by last modified date. 'parent' - Order by post/page parent id. 'rand' - Random order. 'comment_count' - Order by number of comments (available with Version 2.9). 'menu_order' - Order by Page Order. Used most often for Pages (Order field in the Edit Page Attributes box) and for Attachments (the integer fields in the Insert / Upload Media Gallery dialog), but could be used for any post type with distinct 'menu_order' values (they all default to 0). 'meta_value' - Note that a 'meta_key=keyname' must also be present in the query. Note also that the sorting will be alphabetical which is fine for strings (i.e. words), but can be unexpected for numbers (e.g. 1, 3, 34, 4, 56, 6, etc, rather than 1, 3, 4, 6, 34, 56 as you might naturally expect). 'meta_value_num' - Order by numeric meta value (available with Version 2.8). Also note that a 'meta_key=keyname' must also be present in the query. This value allows for numerical sorting as noted above in 'meta_value'. 'order'=>'ASC', 'order'=>'DESC', - 'ASC' - ascending order from lowest to highest values (1, 2, 3; a, b, c). 'DESC' - descending order from highest to lowest values (3, 2, 1; c, b, a).
This error means that your theme doesn't support thumbnails, in order to add this option please find the file 'functions.php' in your theme and add the following strings to this file: add_action( 'after_setup_theme', 'theme_setup' );
function theme_setup() { add_theme_support( 'post-thumbnails' ); }
After that your theme will support thumbnails and the error will disappear.
Requires: 3.1 or higher
Compatible up to: 3.5.1
Last Updated: 2013-4-12
Downloads: 58,418
1 of 7 support threads in the last two months have been resolved.
Got something to say? Need help?