Astra_Ext_Advanced_Hooks_Meta::meta_box_notice( object $post )

Display notice for Existing users for Custom layout settings improvements.


Description


Parameters

$post

(object) (Required) Post object.


Return

(void)


Source

File: addons/advanced-hooks/classes/class-astra-ext-advanced-hooks-meta.php

		public function meta_box_notice( $post ) {
			$link = '<a href="https://wpastra.com/docs/custom-layouts-pro/" target="blank"> Click here </a>';
			/* translators: %s: blog link */
			echo sprintf( esc_html__( 'Custom Layout Settings moved to the Sidebar. Access the settings by clicking the Astra icon in the top right corner. %s for more information.', 'astra-addon' ), $link ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		}

User Contributed Notes

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