P
by Theme Blvd
5 (2 reviews)
Portfolios
Adds a "Portfolio Item" custom post type with associated "Portfolio" and "Porfolio Tag" taxonomies.
Tested up to WP 5 (Current: 6.9)
v1.1.6
Current Version v1.1.6
Updated 7 years ago
Last Update on 20 Jan, 2019
Synced 9 hours ago
Last Synced on
Rank
#8,052
+3 this week
Active Installs
700+
-11.6%
KW Avg Position
40.5
—
No change
Downloads
27.1K
+4 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(2 reviews)
Next Milestone 800
700+
800+
58
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 14 more installs to reach 800+
Rank Changes
Current
#8,052
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 | 14 | — | Tag | 10 hours ago |
| Theme Blvd | 19 | — | Tag | 10 hours ago |
| themeblvd | 21 | — | Tag | 10 hours ago |
| portfolios | 108 | — | Tag | 10 hours 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 20, 2019
- Requires WP
- 0+
- Tested Up To
- 5
- PHP Version
- N/A
- Author
- Theme Blvd
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.