The get-post-meta tag has no wiki summary.
0
votes
2answers
472 views
Echo 2 values from one key in Array with get_post_custom
Edit 12/15/2011 Added Radio Button print code
// Add meta boxes to admin panel only needs to be added once
add_action('admin_menu', 'plib_add_box');
//Add meta boxes to post types
...
0
votes
1answer
164 views
Get author total post votes from post meta
In author.php, i have the list with the posts written by the author.
I'm trying to get the total number of votes, from the author posts.
All posts have a post_meta with a numbered value. i need to ...
0
votes
2answers
1k views
Unable to set Custom “Link URL” for Featured Image, and More?
I have an issue that I believe can be solved one of two ways.
I am using Featured Images in posts for content on a home page slider. What I would like to have happen is to have the destination links ...
1
vote
1answer
524 views
Need help on creating If-statement for custom meta fields
I'm using Wordpress. I have a movie review website called Filmblurb. For my blog posts, I'm trying to create posts with different categories. Under the "Reviews" category, I have a "Details" box that ...
1
vote
1answer
253 views
get_post_meta not working on category.php
I'm referencing an attached image in my header.php page which is displayed as a full screen background on my posts:
global $wp_query;
$page_id = $wp_query->get_queried_object_id();
...
0
votes
2answers
641 views
get_post_custom_values problem, please help
i want get the "issue-cover" from archive page list, i done it. but it will cant get the meta value when i update/add new a post to the archice page.
<div class="monthly_archive">
<?php ...
0
votes
1answer
898 views
How can I get_post_meta() in the most efficient way?
I have a custom post type for a real estate site, and the theme displays 9 properties in a grid on the home page. I don't think its written terribly efficiently - I'm getting about 160 queries on the ...