Last active
December 23, 2015 10:59
-
-
Save danemorgan/6625282 to your computer and use it in GitHub Desktop.
Set $content_width of various #genesiswp layouts for use with #jetpack #tiled_galleries ( http://jetpack.me/support/tiled-galleries/ ).
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 | |
| $site_layout = genesis_site_layout(); | |
| if ( 'content' == $site_layout ) { | |
| $content_width = 1060; | |
| }else if ( 'content-sidebar' == $site_layout || 'sidebar-content' == $site_layout ) | |
| $content_width = 760; | |
| }else if ( 'content-sidebar-sidebar' == $site_layout || 'sidebar-sidebar-content' == $site_layout ) | |
| $content_width = 560; | |
| }else if ( 'content-sidebar-sidebar' == $site_layout || 'sidebar-sidebar-content' == $site_layout ) | |
| $content_width = 460; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment