Last Updated: 3 years ago by BrodNeil
This post is for Genesis framework. The Portfolio Post Type plugin has the Portfolio Title above the featured image as default. If you want to move the title below the featured image, kindly follow the steps below:
- Login to your WP-site backend.
- Goto your functions.php
- Look for this code in your functions.php
$output = '<' . $inner_wrapper . ' class="' . implode( ' ', $class ) . '">' . $title . $image . $date . $excerpt . $content . '</' . $inner_wrapper . '>';
return $output;
- Move the
. $title
behind. $image
to get this result and then save to apply the change.
$output = '<' . $inner_wrapper . ' class="' . implode( ' ', $class ) . '">' . $image . $title . $date . $excerpt . $content . '</' . $inner_wrapper . '>';
return $output;
Make sure to check the outcome if the portfolio title is now below the featured image.