diff --git a/WordPress/Docs/WP/AlternativeFunctionsStandard.xml b/WordPress/Docs/WP/AlternativeFunctionsStandard.xml new file mode 100644 index 0000000000..d667a08a76 --- /dev/null +++ b/WordPress/Docs/WP/AlternativeFunctionsStandard.xml @@ -0,0 +1,75 @@ + + + + + + + + wp_json_encode( $data ); + ]]> + + + json_encode( $data ); + ]]> + + + + + + + + wp_remote_get( $url ); + ]]> + + + file_get_contents( $url ); + ]]> + + + + + + + + _e( 'Hello, World!', 'text-domain' ); +$hello = __( 'Hello, World!', 'text-domain' ); + ]]> + + + echo 'Hello, World!'; + ]]> + + + + + + + + echo esc_html( $user_input ); + ]]> + + + echo $user_input; + ]]> + + +