Function Reference: geodir_display_payment_messages

Summary

This function has not been documented yet.

Source Code

function geodir_display_payment_messages() {
	if (isset($_REQUEST['success_msg']) && $_REQUEST['success_msg'] != '') {
		echo '

' . sanitize_text_field( $_REQUEST['success_msg'] ) . '

'; } if (isset($_REQUEST['error_msg']) && $_REQUEST['error_msg'] != '') { echo '

' . sanitize_text_field( $_REQUEST['error_msg'] ) . '

'; } }