WordPress Shortcode to return the current pages title.
## Beaver Builder ShortCode to get the Page Title function shc_showPageTitle( ) { return get_the_title(); } add_shortcode( 'page_title', 'shc_showPageTitle' );