A Pen by Kunsang Norbu Tsering on CodePen.
  
    
      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
    
  
  
    
  | #!/bin/bash -e | |
| clear | |
| echo "============================================" | |
| echo "WordPress Install Script" | |
| echo "============================================" | |
| echo "Database Name: " | |
| read -e dbname | |
| echo "Database User: " | |
| read -e dbuser | |
| echo "Database Password: " | 
  
    
      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
    
  
  
    
  | /*-----------------------------------------------------------------------------------*/ | |
| /* Adds new body classes | |
| /*-----------------------------------------------------------------------------------*/ | |
| add_filter('body_class', 'add_browser_classes'); | |
| function add_browser_classes($classes){ | |
| if(is_singular()) { | |
| global $post; | |
| $classes[] = $post->post_name; | |
| } |