Tagged Questions
0
votes
1answer
46 views
Help with this custom field conditional if no field is set display nothing
I'm using the code below to display an image if the swap_select custom field value is true. If it's no it displays nothing. However when posts are first created no custom field exists. So what would ...
0
votes
1answer
36 views
Specific coditional usage [closed]
I have some trouble making work a conditional inside a Function.
check this out:
I'm using this function:
function get_spec_1(){
$desc1 = get_post_meta( get_the_ID(), 'eco_mb_tp_1', true!= "" );
...
0
votes
1answer
98 views
Create citation and url in post using 3 custom fields with conditions for each field… So close!
I am creating a new baseball blog. When submitting a post, I want Authors to cite their source for a news type of post.
I have created a custom meta box with three custom fields:
Source title, the ...
1
vote
2answers
311 views
Conditional custom field query
I'm working on a job board-type site, and the client want to sell featured posts. They want the featured posts to expire from showing up in the "featured" section after a predetermined period of time, ...
1
vote
2answers
272 views
Conditional display for custom fields/taxonomy
If there's a value for the custom field, I want it to display the value. If there's no value for the custom field, I want it to display "N/A". I have this working for custom fields but cant replicate ...
0
votes
1answer
96 views
Checking for custom field in admin pages
I am loading some scripts conditionally for the admin section with :
if (is_admin()) {
wp_register_style('admin_js', get_bloginfo('template_directory') . '/admin.js');
...