North

North Theme Hooks

Crexis comes with numerous theme hooks that you may use to easily add new site content without affecting the parent theme. 

Want to learn more? Please visit this article.

Actions:

north_before_header

Before the site header.

north_before_page_title

Before the page title area.

north_after_page_title

After the page title area.

north_before_footer_widgets

Before the Footer Widgets area.

north_before_footer

Before the Footer Bottom Bar (the one that holds the copyright text).

north_after_footer

After the entire Footer area.


Example usage (in the child theme's functions.php file):

function my_site_new_footer_content() {
    echo 'Hello there! I am in a footer!';
}
add_action( 'north_after_footer', 'my_site_new_footer_content' );


Filters

As for now, only one filter is available that allows you to change the portfolio post type slug (used in the URL). To change the portfolio post slug, please use the following code:

function my_site_portfolio_slug( $portfolio_slug ) {        
    return 'works'; // New portfolio slug
}
add_filter( 'north_portfolio_slug', 'my_site_portfolio_slug' );

After doing so, please reset your Permalinks (go to Settings / Permalinks, change them back to default, save and then change back to pretty permalinks).