You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Note: the php echo command in the view file was necessary to render the site url to the browser. The WP callback by itself
// returns an empty string.
// Final result:
add_action('genesis_before_content', 'render_blog_page_title_after_content_sidebar_wrap' );
/**
Render the blog page title on the front and post pages.
@SInCE 1.0.0
@return void
*/
function render_blog_page_title_after_content_sidebar_wrap() {
if ( is_front_page() || is_singular( 'post' ) ) {
}
}
//Code included from view file (commented out for demonstration purposes):
Yoga St. Louis Blog
// Note: the php
echo
command in the view file was necessary to render the site url to the browser. The WP callback by itself// returns an empty string.