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
| // Add Google Tag Manager Head Script | |
| add_action( 'wp_head', 'themeslug__add_header_script' ); | |
| if ( ! function_exists( 'themeslug__add_header_script' ) ) { | |
| /** | |
| * Add Head Scripts like Google Tag Manager Header Scripts. | |
| */ | |
| function themeslug__add_header_script() { | |
| $url = parse_url(get_home_url()); | |
| if( $url['host'] == 'yourdomain.com' ) { |
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
| {"lastUpload":"2020-03-07T14:17:10.369Z","extensionVersion":"v3.4.3"} |
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
| #wordpress | |
| FROM wordpress:5.2.2-php7.2-apache | |
| RUN apt-get update && apt-get install acl -y | |
| COPY setuser.sh /var/www/html | |
| RUN chmod +x /var/www/html/setuser.sh | |
| # hacking into wordpress entry file |