Astra_Ext_Blog_Pro_Markup::author_box_within_container()

Function to get author info box within the post container.


Description


Source

File: addons/blog-pro/classes/class-astra-ext-blog-pro-markup.php

		public function author_box_within_container() {
			$author_box_placement = astra_get_option( 'author-box-placement', 'outside' );
			if ( astra_get_option( 'ast-author-info' ) && 'inside' === $author_box_placement && is_singular( 'post' ) ) {
				astra_addon_get_template( 'blog-pro/template/author-info.php' );
			}
		}

Changelog

Changelog
Version Description
4.6.0 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.