Astra_Ext_Blog_Pro_Markup::single_post_navigation_markup()

Enable/Disable Single Post Navigation


Description

Checks the customizer option Disable Single Post Navigation and Enable/Disable the single post navigation.


Return

(void)


Source

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

		public function single_post_navigation_markup() {
			$enable_post_navigation = astra_get_option( 'ast-single-post-navigation' );

			if ( $enable_post_navigation ) {
				remove_action( 'astra_entry_after', 'astra_single_post_navigation_markup' );
			}
		}

Changelog

Changelog
Version Description
1.3.3 Introduced.

User Contributed Notes

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