austinnetwork2009
Member
Posted 1 month ago #
I cannot figure out where to find the key name for the custom field to add different pictures to blog posts for these websites http://www.austin-network.com and for http://www.homesinsouthaustin.com. Is this all I need to be able to add different pics with different posts?
What makes you think you need a custom field? Those sites use 2 completely different themes.
austinnetwork2009
Member
Posted 1 month ago #
How do I enter different pictures for either of the sites? I am having same problem with both sites.
austinnetwork2009
Member
Posted 1 month ago #
austinnetwork2009
Member
Posted 1 month ago #
I have tried everything except the right way. How do you add these little pictures??????
look for the $key value defined in the get_post_meta() function in your theme's template pages
<?php
//$custom_field_value = get_post_meta($post_id, $key, $single);
$custom_field_value = get_post_meta($post_id, 'thumbnail', $single);
?>