This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| fetch('/level/1', { | |
| credentials: 'same-origin' | |
| }).then(function (response) { | |
| return response.text(); | |
| }).then(function (response) { | |
| $('#password').val(response.match(/Password:\s+([\d\-]+)/)[1]); | |
| }); | |
| })(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php $my_custom_content = get_post_meta( $post->ID, 'my_custom_content_meta_key', true ); ?> | |
| <?php if ( '' != $my_custom_content ) : ?> | |
| <?php echo apply_filters( 'the_content', html_entity_decode( $my_custom_content ) ) ?> | |
| <?php endif; ?> |