Skip to content

Remove Portfolio Category and Tag Descriptions

Disable Portfolio Related Columns Responsiveness

function my_portfolio_related_entry_classes( $classes ) { if ( is_singular( 'portfolio' ) && in_array( 'loop-related', $classes ) ) { unset( $classes['col'] ); if ( ( $key = array_search( 'col', $classes ) ) !== false ) { unset( $classes[$key] ); } $classes[] =…

Read more

Back To Projects Portfolio Header Button

This example snippet shows you how you can add a button to the page header on your portfolio posts that links back to the main portfolio page. You can of course do the same for any post type and after…

Read more
Back To Top