akesin
Forum Replies Created
-
Thanks for the reply. I did this by using a plugin that allows for custom css on a per page basis called Custom CSS for Posts and Pages (CCSS). It worked well to allow me to make that page be whatever it needed it to be while not disrupting the infrastructure of the rest of the site.
Hello!
I’m sorry that I’m a complete moron but 10 months later I’m here trying to set up the mini loops widget again with the custom fields attached to my posts called “source” and “writer”. I’m assuming i need to enter something into the custom fields field and then reference it in the item format field but no combination has worked so far. APOLOGIES AND THANKS in advance if you can help.
btw: this is the code I’m using to call these fields in the post itself..
<?php $source = get_post_meta($post->ID, ‘source’, true); ?>
<?php $writer = get_post_meta($post->ID, ‘writer’, true); ?><p class=”meta”><?php echo $source; ?></p>
<p class=”meta”><?php echo $writer; ?></p>