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 | |
$resource = pods('resource', get_the_id()); | |
$short_description = $resource->display('short_description'); | |
$item_reference_link = $resource->display('item_reference_link'); | |
$button_text = $resource->display('button_text'); | |
$button_icon = $resource->display('button_icon'); | |
$preview_image = $resource->display('preview_image'); | |
var_dump($button_icon); |
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
upstream php { | |
server 127.0.0.1:9001; | |
} | |
upstream hhvm { | |
server 127.0.0.1:9002; | |
} | |
fastcgi_cache_path /var/cache/nginx levels=1:2 keys_zone=microcache_fpm:100m max_size=1000m; | |
add_header rt-Fastcgi-Cache $upstream_cache_status; |