Last active
December 14, 2015 08:19
-
-
Save JeppeSigaard/433c3725d96e5a19e915 to your computer and use it in GitHub Desktop.
Vis thumbnail sammen med excerpt på arkivsider
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
| <?php | |
| /* | |
| Plugin name: Nick's Thumbnail Excerpt | |
| Description: Viser thumbnails inden excerpt på arkivsider | |
| */ | |
| add_filter('get_the_excerpt','nicks_thumbnail_excerpt'); | |
| function nicks_thumbnail_excerpt($output){ | |
| if(is_archive()){ // valider evt. også på kategorier? | |
| $output = get_the_post_thumbnail() . $output; | |
| } | |
| return $output; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment