P
by Jason
5 (2 reviews)
Portfolios
Adds a "Portfolio Item" custom post type with associated "Portfolio" and "Porfolio Tag" taxonomies.
Tested up to WP 5.0.25 (Current: 6.9.4)
v1.1.6
Current Version v1.1.6
Updated 7 years ago
Last Update on 21 Jan, 2019
Refreshed 6 hours ago
Last Refreshed on
Rank
#8,201
—
No change
Active Installs
700+
—
No change
KW Avg Position
42.5
—
No change
Downloads
27.3K
+5 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(2 reviews)
Next Milestone 800
700+
800+
223
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 52 more installs to reach 800+
Rank Changes
Current
#8,201
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
2 reviews
Overall
100%
5
2
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Jason Bobich | 9 | — | Tag | 1 day ago |
| Theme Blvd | 19 | — | Tag | 1 day ago |
| themeblvd | 21 | — | Tag | 1 day ago |
| portfolios | 121 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.1.6
- Last Updated
- Jan 21, 2019
- Requires WP
- 0+
- Tested Up To
- 5.0.25
- PHP Version
- N/A
- Author
- Jason
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Portfolios
function my_grid_rows() {
return 4; // Number of rows per page
}
add_filter('themeblvd_default_grid_rows', 'my_grid_rows');
return 4; // Number of rows per page
}
add_filter('themeblvd_default_grid_rows', 'my_grid_rows');
$portfolios = Theme_Blvd_Portfolios::get_instance();
remove_filter( 'themeblvd_theme_mode_override', array( $portfolios, 'theme_mode' ) );
remove_filter( 'themeblvd_template_parts', array( $portfolios, 'template_parts' ) );
}
add_action('after_setup_theme', 'my_portfolio_mods');
How can I change the sidebar layout of Portfolio and Portfolio Tag archives?
If you're using a theme with Theme Blvd framework 2.5+, there's a user option for this at Appearance > Theme Options > Layout > Sidebar Layout > Portfolios. And if not, you can use the following code.
function my_sidebar_layout( $layout ) {
if ( is_tax('portfolio') || is_tax('portfolio_tag') ) {
$layout = 'full_width';
}
return $layout;
}
add_filter('themeblvd_sidebar_layout', 'my_sidebar_layout');
More Info: Customizing Sidebar Layouts
How can I change the URL slug of Portfolio and Portfolio Tag archives?
function my_portfolio_tax_args( $args ) {
$args['rewrite'] = array('slug' => 'my-slug');
return $args;
}
add_filter('themeblvd_portfolio_tax_args', 'my_portfolio_tax_args');
function my_portfolio_tag_tax_args( $args ) {
$args['rewrite'] = array('slug' => 'my-other-slug');
return $args;
}
add_filter('themeblvd_portfolio_tag_tax_args', 'my_portfolio_tag_tax_args');
Note: Remember to flush your re-write rules! In other words, after you make this change, go to Settings > Permalinks in your WordPress admin, and re-save the page.
remove_filter( 'themeblvd_theme_mode_override', array( $portfolios, 'theme_mode' ) );
remove_filter( 'themeblvd_template_parts', array( $portfolios, 'template_parts' ) );
}
add_action('after_setup_theme', 'my_portfolio_mods');
How can I change the sidebar layout of Portfolio and Portfolio Tag archives?
If you're using a theme with Theme Blvd framework 2.5+, there's a user option for this at Appearance > Theme Options > Layout > Sidebar Layout > Portfolios. And if not, you can use the following code.
function my_sidebar_layout( $layout ) {
if ( is_tax('portfolio') || is_tax('portfolio_tag') ) {
$layout = 'full_width';
}
return $layout;
}
add_filter('themeblvd_sidebar_layout', 'my_sidebar_layout');
More Info: Customizing Sidebar Layouts
How can I change the URL slug of Portfolio and Portfolio Tag archives?
function my_portfolio_tax_args( $args ) {
$args['rewrite'] = array('slug' => 'my-slug');
return $args;
}
add_filter('themeblvd_portfolio_tax_args', 'my_portfolio_tax_args');
function my_portfolio_tag_tax_args( $args ) {
$args['rewrite'] = array('slug' => 'my-other-slug');
return $args;
}
add_filter('themeblvd_portfolio_tag_tax_args', 'my_portfolio_tag_tax_args');
Note: Remember to flush your re-write rules! In other words, after you make this change, go to Settings > Permalinks in your WordPress admin, and re-save the page.