Last active
April 15, 2017 11:07
-
-
Save bigdigital/9eda5d4b24a0b1b995639263b9688f4d to your computer and use it in GitHub Desktop.
Replacing "noimage" in child theme
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
function presscore_get_default_image() { | |
return array( PRESSCORE_CHILD_THEME_URI . '/images/noimage.jpg', 1000, 700 ); | |
} | |
function presscore_get_default_small_image() { | |
return array( PRESSCORE_CHILD_THEME_URI . '/images/noimage-small.jpg', 119, 119 ); | |
} | |
function presscore_get_default_thumbnail_image() { | |
return array( PRESSCORE_CHILD_THEME_URI . '/images/noimage-thumbnail.jpg', 150, 150 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment