Tagged Questions
1
vote
1answer
100 views
Force hide custom field metaboxes
How can I completely remove the custom fields and the collapse button in the Edit Post/Edit Page custom screen, but without removing the capability to add custom fields with a PHP function?
3
votes
1answer
292 views
<form> inside a metabox
I'm trying to write a plugin that allows a user to upload a video to Vimeo through the Vimeo upload API.
In order to avoid trying to upload a video to a potentially shared hosting account and then ...
3
votes
1answer
301 views
Custom filter for the_content doesn't work correctly
=====THIS POST HAS BEEN UPDATED===== SCROLL TO THE BOTTOM TO READ THE UPDATE!
I asked a question yesterday that a gentleman named Tim was nice enough to take a stab at. He helped me through writing a ...
0
votes
1answer
118 views
How do I assign this filter to a variable? (Appending php & markup to the_content)
===I HAVE SOMETHING THAT WORKS NOW, JUST NOT CORRECTLY. PLEASE READ THE WHOLE POST, I AM GOING TO LEAVE IT ALL UP HERE BECAUSE OTHERS MAY BE ABLE TO BENEFIT FROM ME BUMBLING THROUGH THIS PROCESS!!
I ...
2
votes
1answer
149 views
Filter Hook Returning Blank When Used Twice
This is a pretty lengthy question, so bare with me.
In a plugin I've written that allows users to easily create new meta boxes, I have a function that uses a switch() to return the appropriate HTML ...
2
votes
1answer
406 views
Better way to enforce category hierarchy in post_categories_metabox?
The objective is to ensure that when editing a post, the metabox that lists a hierarchical taxonomy doesn't reorder itself upon Update to put checked items on top.
Right now, edit-form-advanced.php ...
0
votes
1answer
250 views
How to remove the RichText Meta Box
How can I remove the Rich Text box editor in wordpres. I have used remove_meta_box function
and specifying the boxes ID but i does not work like it does for other core meta boxes:
The code i tried:
...
0
votes
1answer
192 views
Can I attach a plugin via my add_filter callback contents?
I'm trying to add my plugin interface to the Category Editor. I've easily attached it to the post and page editor using the add_meta_box() filter, but there does not appear to be an add_meta_box hook ...