Tagged Questions
0
votes
0answers
5 views
Need Metabox show the values [duplicate]
I can show the metabox of my code but no works for save and get values into the field i save until
<?php
function reaction_buttons_meta2()
{
global $post;
echo $_POST['reaction_buttons_off2'];
...
0
votes
0answers
22 views
Problem for recover and save metaboxes
I create metaboxes but i can“t save data and also no show data insert into field , this is my code
<?php
function reaction_buttons_meta2()
{
global $post;
echo ...
0
votes
2answers
81 views
How can i do custom author list?
My blog have many author. I can list all author.
All Author list:
<ul>
<?php wp_list_authors('exclude_admin=0&optioncount=1&show_fullname=1&hide_empty=1'); ?>
</ul>
...
1
vote
2answers
435 views
Creating Custom Meta Boxes on Plugin Option Page
Right in my main plugin file, wp-email-capture.php I am calling this:-
add_action( 'admin_init', 'wp_email_capture_add_custom_boxes');
This calls this function:-
function ...
0
votes
1answer
148 views
Wordpress metaboxes - textfield suggestion automatically populated
[Long story short]
Is there any Wordpress plugin/function that would allow the creation/integration of a metabox's textfield that automatically populates a dropdown menu (in the admin area, while in ...
1
vote
2answers
693 views
Advanced Custom Fields
I am using the Advanced custom fields plugin to add a upload image option to a page, but I am wondering if there is a way so that, when I output it to a theme with <img src="<?php ...
2
votes
1answer
61 views
How to attach Links into page/post or custom post type?
I need to create or use an existing 3rd party plugin to attach any links (one or more) to a page, post or post-type from the WP link manager:
http://example.com/wp-admin/link-manager.php
I need a ...
1
vote
2answers
400 views
get_post_type on post.php
How can I get the post_type while on the post.php page?
I'm working on a plugin that lets users create a new post type. Then in the new post type, a meta box will be added with some options. The meta ...
1
vote
1answer
68 views
dynamically generating plugin syntax
I have downloaded an audio player plugin for WP. the syntax is very simple. You just add the line [audio:my_file.mp3] to your post editor/excerpt, and call it in the loop with the_content() or ...
1
vote
1answer
91 views
All of my custom posttypes are 404'ing
All of the posts made within custom posttypes have suddenly become uneditable, and will 404 when you try to view them.
The posts in the admin panel are greyed out (posts in the standard post/pages ...
0
votes
2answers
756 views
How to add meta boxes to the 'Add new post' screen?
I want the user to fill in a form (when they create a new blog post). The results of the form should be embedded within the new blog post. So I am trying to think of the best way of coding this. Meta ...
