Last active
September 28, 2016 14:26
-
-
Save shrinkray/bb21a1dbf21d935501cb225f0ad09ef9 to your computer and use it in GitHub Desktop.
This will be a collection of snippets I use all the time in WP template pages.
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
| <!-- Header --> | |
| <!-- True/False --> | |
| <!-- Images --> | |
| <?php // vars | |
| $pic = wp_get_attachment_image(get_sub_field( 'image' ), 'full', false, $attr=array('class' => 'img-responsive')); | |
| ?> | |
| <?php echo $pic; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment