These are simple snips of code that have a wide variety of uses.
CSS
/* LOOKS GOOD ANYWHERE */ main { max-width: 38rem; padding: 2rem; margin: auto; }
PHP
/* FAVICON HEADER CODE */ add_action('wp_head', 'favicon'); function favicon(){ ?> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <?php };
/* WORDPRESS CHILD THEME */
1st: functions.php with...
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
function enqueue_child_theme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
?>
2nd: style.css with...
/*
Theme Name: [THEME] Child
Template: [ORIGINAL THEME NAME]
*/
/* stick all the CSS here */