create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| <?php | |
| $thecontent = get_the_content(); | |
| if(!empty($thecontent)) { ?> | |
| // do or output something | |
| <?php } ?> // break php tag for HTML block |
| <!DOCTYPE html> | |
| <html lang="en" dir="ltr"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <link type="text/css" rel="stylesheet" href="style.css" media="screen"> | |
| </head> | |
| <body> | |
| <div class="footer-social-icons"> | |
| <h4 class="_14">Follow us on</h4> |
| <?php | |
| /* | |
| This script will allow you to send a custom email from anywhere within wordpress | |
| but using the woocommerce template so that your emails look the same. | |
| Created by [email protected] on 27th of July 2017 | |
| Put the script below into a function or anywhere you want to send a custom email | |
| */ |
| <?php | |
| header('Content-Type: application/csv'); | |
| header('Content-Disposition: attachment; filename=member_export.csv'); | |
| header('Pragma: no-cache'); | |
| ?> | |
| {!-- | |
| Exports the EE members in CSV format. This is only accessible to admins and editors. | |
| Does not export members in the banned or guests groups. |
| #!/bin/bash | |
| # ------------------------------------------------- | |
| # Make site directory | |
| # Download WP and install WP to site directory | |
| # Set WP configuration | |
| # Configure NGINX for new domain-name | |
| # ------------------------------------------------- | |
| # apt-get update |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro | |
| # | |
| WP_OWNER=changeme # <-- wordpress owner | |
| WP_GROUP=changeme # <-- wordpress group | |
| WP_ROOT=/home/changeme # <-- wordpress root directory |