Skip to content

Instantly share code, notes, and snippets.

@noballgames
noballgames / functions.php
Last active June 26, 2017 16:08
In: themes/divi-child/functions.php
<?php
add_action( 'wp_enqueue_scripts', 'my_enqueue_assets' );
function my_enqueue_assets() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
function mycustom_featured_width() { return 320;} /* Custom featured post image width */
add_filter( 'et_pb_blog_image_width', 'mycustom_featured_width');