Tagged Questions
0
votes
1answer
17 views
Search that will look in custom field, post title and post content
I am looking for a way to perform a search, and while performing the search, it checks a custom field named keywords, the post title and the post content. If any of those fields have results like what ...
0
votes
1answer
32 views
the_meta - no get_the_meta query?
I want to use the_meta as though it were get_the_meta. I want to do this because when i use the_meta in my functions.php file (I'm using a shortcode to enter data to pages), it posts the meta ...
0
votes
1answer
29 views
Display movies that apear this day next
This code retrive me the movies that are comming in cinema, i want to be able to list movies that apear this day, next day ... 7 day week
Ex: Today is 13.05.2013, i want to list the movies that ...
0
votes
1answer
38 views
Saving zero in meta box
So I have created a meta box for a review rating. Sometimes the value of the rating (out of 5) is zero.
When you enter a 0 into the input and save the data, it doesn't process because of the fact 0 ...
0
votes
1answer
25 views
Where can I find the code for the menu page meta boxes?
I want to add a meta box to the menu page. More specifically I want to basically clone the pages or category meta box and have it load the items into the list from a meta key, instead of pages or ...
-2
votes
1answer
24 views
How can i display actor birtday links [duplicate]
Hy, i display actor retrived by a date piker, by day and month like that,
<?php
$todaysDate = date('md'); // Get today's date in the right format
$loop = new WP_Query( array(
'post_type' ...
-2
votes
0answers
35 views
Getting actor by day and month [duplicate]
How can i retrive actor by birthday day and month.
I want to display the actor birthday.
"Today actors birthday" - and retrive the actors
How can i display only the actor born this day and this ...
0
votes
0answers
35 views
How to tell if string is null or empty in meta value? [closed]
I am trying to figure out how to find out if a string is null or empty in php. The place I am pulling the value from is a meta value that is stored from a meta box on the post page.
I want to check ...
0
votes
1answer
35 views
How can I create a menu items from meta box based on users input
I have created a metabox that takes a name that the user can give as an additional name of their post. I am wondering how I can automatically create a menu item based on the name the user input into ...
1
vote
1answer
20 views
Trying to retrieve post meta
I have created a meta box that allows users to add an additional name/id to their post. From what I can tell it is adding the meta information correctly because when I edit a post that has a custom ...
0
votes
1answer
65 views
Get post meta retrieving wrong value
I created a custom meta box with a textbox where the user can enter a custom value in as an additional identification tag. I thought I had it right but when I try to retrieve the value it is giving me ...
0
votes
0answers
32 views
Markup Validation Service problem with alt images
Hy,i have try over a week to validate 4 images that are retrived by a code with GD Star Rating plugin
This is the code i have:
<?php
wp_gdsr_render_rating_results(array('template_id' => 49, ...
1
vote
0answers
57 views
Unique key for each row in a repeater field
Is it possible to have a unique key for each sub fields in a repeater field? I don't want to use the array index, because the array index can be changed, when adding new rows between existing rows.
I ...
0
votes
2answers
171 views
Display background color or image with custom meta box?
With custom meta boxes, how would I go about displaying the background image (or color if no image is linked) within the page.
Code for the page where I want data to displayed. I want to apply the ...
0
votes
0answers
17 views
Sidebar IF query hiding everything
I have this query which I'm using in the sidebar, but when I place it in a php widget, the whole sidebar disappears... The code is below and the full sidebar code is in a pastebin here ...
3
votes
1answer
54 views
How to use multiple query with same meta key
I use these codes to print custom field query.
My custom field key is out_wiki
<?php if( get_post_meta($post->ID, "out_wiki", true) ): ?>
<div class="outlink">
...
0
votes
1answer
51 views
Display Custom Field in Sidebar if Value is Present
I'm trying to use 'if' 'else' to display a link button if I have a value in the 'TourURL' custom field, and if not, nothing will display but can't seem to get the if code to work:
<?php if(global ...
0
votes
1answer
66 views
How to echo a different field if another field is empty?
I succeeded in getting both images and video to echo into a bootstrap carousel. However, I run into a problem when the post contains no images. If there are no images then there is no class="item ...
0
votes
4answers
216 views
Add additional field to custom post_type
I am trying to add another field (subtitle) to my already created and existing custom post_type: team (code from functions.php in my *child*theme)
<?php
/**
* Custom Post type register framework
...
1
vote
1answer
224 views
How can i create a function to get youtube video time
Tom J Nowell posted this code to help me retrieve the YouTube video time.
Functions
// function to parse the code from the URL
function parse_youtube_video_id_from_url( $video_url ) {
...
0
votes
1answer
40 views
custom header text
I am creating a custom website by modifying the twenty-eleven theme. I want to create custom text in the header area that is unique to each page. Is there a way to add a 'description' to each page and ...
1
vote
1answer
134 views
Getting movie and serial on actor page
I'm building a cinema site, I came with a problem, let me explain:
Movies- are stored in Post's
Actors- are stored in Post Type - persoane ( taxonomy= lista)
Serials - are stored in Post Type - ...
1
vote
1answer
82 views
Displaying custom field according to date
I am not sure whether this is an Advanced Custom Fields-related question, or a general PHP question, so I have also posted this to the ACF support forum, for those of you who are also looking for ...
0
votes
3answers
90 views
Display a custom field rating system in the front end
I have added a content rating system to my platform where the authors can select which audience their post is appropriate for. Currently, these options are available:
Unrated
G
PG
...
0
votes
2answers
105 views
Using a string from a custom field within a link
I want to show the image only if there is info in the field. And the link around the image uses the info in the field. The mailto: field is coming up blank. So I'm guessing/hoping I'm doing something ...
0
votes
1answer
39 views
Meta boxes only displayed when editing normal (default wp post_type) posts
I've multiple meta boxes for my main/default post types.
I also have multiple post_types where this meta boxes make no sense.
Can you hint me on if/else function I would use on displaying meta boxes ...
1
vote
2answers
693 views
Most efficient way to add javascript file to specific post and/or pages?
I am wondering what the most efficient method is to add a javascript file specifically for a post and/or page.
Here are a few solutions I came up with:
Switch to HTML editing view and post your ...
0
votes
1answer
112 views
How do I filter a custom post type loop by a field?
OK, very simple task, I'm just not good at PHP.
I have a page where I want to list some staff using a styled list. Here is the page all working fine, I just need to divide the results - ...
0
votes
1answer
190 views
Geocoding an Exploded Custom Field Array
So, I'm having a little problem with crossing signals in WordPress between Google Maps' API and an exploded custom field. I want to be able to geocode an address that's been exploded from a custom ...
1
vote
1answer
308 views
Use ajax to update_post_meta
2 days ago I asked this then I tried to work on my code to be able to understand how ajax and php work and now I have a new issue that, probably would be easily solved.
These are my codes:
<?php
...
0
votes
3answers
103 views
Only show image from custom field when present
How would I adjust the following code to only show the image tag when there is a variable present in the "imageembed" field?
<?php $imageid = get_post_meta($post->ID, 'imageembed', true); ?>
...
1
vote
0answers
88 views
Automatic Shortcode Creation with Custom Fields
This is basically a php issue as I'm fairly new to it and can't figure out how to code things the way I want. I am basically trying to pull information from custom fields (grid reference) and post ...
4
votes
1answer
352 views
Update all posts automatically when using post_meta
I recently created a new site using wordpress but I'm a rookie - everything I know is trial and error with no formal training. So please, please, please keep your answers as simple as possible. Thanks ...
0
votes
1answer
113 views
Need help with simple “if statement” checks to output particlular CPT data depending on what client uploads/fills out
In short, Im not a master of PHP yet and Im not entirely sure how to place a series of checks (if statements) in my template so that it will know what to display depending on what the client ...
0
votes
1answer
1k views
Show values of custom field created with ACF on a page
Im using ACF to create custom fields. One of them is a list of checkboxes that display some options (option1, option2, option3....). and what i need is to show these options on a page in a list like ...
0
votes
1answer
163 views
Wordpress stripping out custom field tags
I am using wordpress get post meta to store the value of a custom field into a variable. In this particular instance, It is actually grabbing the post's parent's custom field due to the ...
3
votes
1answer
237 views
Adding Custom Fields for Img in Posts
I'm wondering how I'd be able to set a custom field within my Wordpress posts. I want to have a field available to add an image via the Post dashboard - that has a max width & max height set, I ...
1
vote
1answer
521 views
Custom field values to taxonomy terms
I have a "author" custom field with the names of author. I want to add some new features to the site so I decided that custom taxonomies will be the best solution. So what I need to do is to get the ...
0
votes
1answer
726 views
Using 'strtotime' function to convert a custom-meta-box to a date-stamp
I am building a "podcast" post type in a wordpress build using custom-post-types, meta-boxes & taxonomies. There may be a simpler way to do this.. I'm still learning and this is my first go at ...
0
votes
1answer
227 views
How To Use Custom Fields With .mp3 Links
Hope it doesn't seem to shallow of a question, but I've searched the web as much as I've could and have not found anything similar yet.
:: Creating a regular post; How can I place a .mp3 link in a ...
-2
votes
1answer
340 views
Too many if's and else if's ?? - Must be better way [closed]
Everyone on this forum has helped me tremendously. Thank you. I now have a page that functions the way I want it but my code seems to be cumbersome. To figure out a string to echo I have a long ...
0
votes
1answer
466 views
Can 'Custom Field' data be inserted into this Short Code?
I have created a custom page template. In the template, I use a shortcode for JJ NextGen JQuery Slider. I would like the page to have a 'custom field' called 'Image Gallery' with a value that derives ...
0
votes
1answer
351 views
How to use custom fields to replace top-level parent title with an image using wp_list_pages?
I'd like to integrate get_post_meta into the wp_list_pages mix so that any top-level parent list items get replaced with images ONLY when a key exists in the post's custom fields section. I can't do ...
0
votes
1answer
48 views
Using an “IF” statement based on the existence of custom field
I wish to use a function which is run only when a specific custom field is available.
Something like:
if (custom_field_x_exists("name_of_the_custom_field")) :
<Do some ...
0
votes
1answer
129 views
PHP Puzzle: Unique Styles with PHP loop
The Puzzle:
I am currently working on a music blog that has various venues and numerous locations that are laid out at the top of each post as follows:
USA.California.Los Angeles. Hollywood Bowl
...
1
vote
2answers
273 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
116 views
Query pulling a single post per month
I am trying to only show a single post per month on a query.
I can set the date as a variable and use something like the php array_unique function to check the dates and only echo out unique ones, ...
0
votes
1answer
454 views
How can I sort the order of multiple custom field values in a custom post type?
Here's the website: KunzlerIP
At the bottom of the website, you see a slider using Fancybox. Each thumbnail pops up some content from an individual custom post type post. For this custom post type, ...
0
votes
1answer
136 views
Make separate text boxes for separate WordPress Custom Fields
I am trying to make usability of WordPress custom fields admin easier in my theme. I saw it in ElegantThemes' eStore theme. Only I couldn't figure out how to do it in my custom theme because I ...
0
votes
3answers
1k views
I want Page titles and excerpts to show up on home.php in certain order
In the functions.php, I have the following code added:
add_post_type_support( 'page', 'excerpt' );
This allows pages to have excerpts. The reason I want an excerpt is because I want to call only ...
