gregory.ledger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: After updating to WP 3.9, I cannot access the dashboard.On my ftp, there is no .maintenance file, no object-cache file
that being said, there does appear to be something called batcache…would this be the same as memcache on the server side? Should I delete or rename?
Thanks, anyone.
Forum: Plugins
In reply to: [Enlarge Text] How can this work with a responsive template?I was just worried that if my fonts are in ems for the responsive aspect and the resizing tool increases and decreases by percentages, how unpredictable will each media query become.
Forum: Plugins
In reply to: [Post Font Resizer] [Plugin: Post Font Resizer] It doesn't workCan this work on a responsive site? Or how does it work on a responsive site?
Forum: Fixing WordPress
In reply to: get_post_meta post id questionI don’t think you understood the question, esmi. I already read that codex page.
the code is:
<?php $ID = 4; echo get_post_meta($ID, 'caption_text', true); ?></div> <div class="whitearergt"><?php $ID = 4; echo get_post_meta($ID, 'contact_usbody', true); ?></div>My issue is that there is no post with an id of 4 (there is a post with an id of 1, then the next post in number order is 31. So I’m asking how did the programmer reference a post with an id of 4 and how do I find it?