Tagged Questions
0
votes
1answer
62 views
Custom Meta Box If Else Statement
I have created a custom meta box for posts and I need to display said data. I have been using the below method to display the data, But I am in need of a slightly different solution.
<a ...
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!= "" );
...
1
vote
5answers
186 views
meta content on required pages
I need to post extra information on programs pages, so i have decided to use wordpress metabox but its showing on all pages. So is there any condition check so it could put meta box on those sub pages ...
0
votes
2answers
144 views
Condition display metabox in case the post is saved
I need to register a metabox in my WordPress custom post, but only in case the post is permanent saved in database.
What I mean, when the user click on "Add new" I don't want to display the metabox. ...