function genesis_do_footer() { /** * Deprecated. Adjust footer credit text. * * @since 1.0.1 * @deprecated 3.1.0 * * @param string The credit text. */ apply_filters_deprecated( 'genesis_footer_creds_text', [ '' ], '3.1.0', 'genesis_pre_get_option_footer_text', __( 'This filter is no longer supported. You can now modify your footer text using the Theme Settings.', 'genesis' ) ); $creds_text = wp_kses_post( genesis_get_option( 'footer_text' ) ); $output = '<p>' . genesis_strip_p_tags( $creds_text ) . '</p>'; /** * Adjust full footer output. * * @since 1.0.1 * * @param string The footer output. * @param string Unused. Was $backtotop_text, maintained for backwards compatibility. * @param string The credit text. */ $output = apply_filters( 'genesis_footer_output', $output, '', $creds_text ); echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- sanitize done prior to filter application }