The wordpress-plugin-dev tag has no wiki summary.
7
votes
4answers
1k views
Wordpress API: Add / Remove Tags on Posts
I know it seems like a simple operation, but I can't find any resource or documentation that explains how to programmatically add and remove tags to a post using the post ID.
Below is a sample of ...
6
votes
1answer
2k views
How to check if currently in Wordpress Admin?
I am creating my first plugin and have a single function that controls the output. This function has different output based on whether or not it is being viewed from within the WordPress admin vs. the ...
6
votes
4answers
1k views
WordPress plugin development using OOP
I am new to plugin development. So please correct me, wherever I get it wrong.
I have a website which needs a players plugin with the following needs:-
An administrator controllable form for player ...
6
votes
1answer
2k views
Wordpress plugin - add a new page
Starting out with Wordpress plugin development - how does a plugin add a page to Wordpress that utilizes the current theme? For instance the plugin would create a page at this URL:
...
6
votes
1answer
153 views
Manage widgets from page edit screen
I'm looking to find a way to integrate the widget control area into the page edit screen. For the site I'm making it would be perfect with the same drag and drop functionality.
I want a list of the ...
5
votes
2answers
3k views
Wordpress: how to call a plugin function with an ajax call?
I'm writing a Wordpress MU plugin, it includes a link with each post and I want to use ajax to call one of the plugin functions when the user clicks on this link, and then dynamically update the ...
4
votes
3answers
201 views
PHPBB with wordpress
How to integrate phpbb with a wordpress site. When ever a user registered on my site automatically creates a forum account also. Any body knows the solution for this please help me.
4
votes
4answers
3k views
wordpress filters documentation? Trying to understand add_filter()
I read over the documentation several times and have been having a hard time trying to figure out what is going on with the function. I'm more and more confused after looking at the documentation, ...
3
votes
1answer
52 views
Apply theme based on user selection in Wordpress?
I have an idea to create a template sites that basically shows a different templates in web page. When user select particular template, The site should have changed to that theme selected by user at ...
3
votes
1answer
73 views
Where should I store global data for my multi-site WordPress plugin?
I wrote a plugin for WordPress which has a few user-configurable settings that are stored using WordPress's suggested method. I know they are saved in the wp_options table, but that is abstracted by ...
3
votes
3answers
230 views
wordpress: loading javascript only where shortcode appears
have an interesting conundrum. I need to load about 8 javascript files and the same number of styles for my plugin. These are only needed where ever my shortcode is ran.
I've tried to load them with ...
3
votes
3answers
903 views
Problem with WordPress “save_post” Action
I have developed a WordPress plugin which needs to perform additional processing when a post of a custom post type is saved.
The most logical solution was to utilise the "save_post" action. Upon ...
3
votes
2answers
2k views
How to add new custom submenu under another plugins menu
There is plugin called Shopp in my WP admin page , this plugin has got top level menu "Shopp" .
This is the top level menu:
$menus['main'] = add_menu_page('Shopp', 'Shopp', SHOPP_USERLEVEL, ...
3
votes
4answers
1k views
Wordpress Database $wpdb versus get_option()
So I have been developing plugins that create interact and delete to a database by using the get_option functions.
I have now seen some tutorials showing how to use the global $wpdb way of getting ...
2
votes
1answer
28 views
WP Plugin: Adding a custom code in editing post and rendering it
I am new into WP Plugin development. I want to make a plugin which adds the facility to use any custom code within editor to render it into something else. For instance if I am referring my Hacker ...
2
votes
1answer
29 views
WordPress actions, filters and performance
I am creating a WordPress plugin, which I would like to make as customizable as possible for other developers by providing actions and filter hooks in several places.
Can having too many hooks ...
2
votes
1answer
972 views
Modifying Wordpress post status on Publish
I am attempting to validate fields on a custom post type in the admin panel Edit Post page.
When the user clicks "Publish" I want to validate fields in the POST data, and change the post_status to ...
2
votes
1answer
233 views
Using Object Relational Mapping (ORM) on wordpress
I am trying my hand at wordpress and after searching google for a solution,i have come up with nothing.Is it possible to use an ORM with wordpress?.
2
votes
1answer
59 views
Loading file from the same directory doesn't work unless I specify the full path
So I have this line of code inside a WordPress plugin. The code file is in the same folder as the XML file I'm trying to load. When I remove the full path and leave just the filename I get an I/O ...
2
votes
2answers
587 views
Filtering custom fields on wordpress admin page
I'm currently working on a wordpress 2.9.2 plugin (my first) that creates additional custom fields that will later be read from the template. The plugin adds an additional meta box to the "Edit Post" ...
2
votes
2answers
58 views
is there any way to hook a debug function into a hook such as init and retrieve every php function whose operates there?
is there any way to hook a debug function into a hook such as init and retrieve every php function whose operates there ?
what i meant with PHP function is its name ? is it possible to retrieve any ...
2
votes
1answer
1k views
User permission - triggering code on user role (Wordpress)
I'm developing a custom plugin in PHP so existing plugins are not usable. What I want to achieve is that I want to display different url within a post for some users . For users that are registered in ...
1
vote
1answer
35 views
How to add custom button and new features in TinyMCE in wordpress3.3 [closed]
Note my wordpress version is 3.3.1
some hooks and function is not the same anymore, and the info on wordpress.org is not actually helping.
all I want to do is adding and customize the default ...
1
vote
1answer
28 views
Update wordpress plugin already exist table
I have developed a wordpress plugin , i am planning to update the plugin.
In the plugin updation process i want to update the already exist tables fields which is created when plugin activated . I ...
1
vote
0answers
28 views
Wordpress media upload: insert uploaded file to post immediately after upload
I need a minimal video upload mechanism in my plugin.
I use the built in media upload iframe:
tb_show("", "/wp-admin/media-upload.php?type=video&TB_iframe=true");
With fewer options:
...
1
vote
1answer
27 views
Wordpress Enqueueing Scripts Load Time
I am writing a Wordpress shortcodes plugin for a client and admittedly don't know much about load times. Which would load faster, one enqueued script with a size of 300kb or 10 separate enqueued ...
1
vote
1answer
64 views
Wordpress: Scheduled category change (workflow). How to do?
I think it is a common case:I have three categories: Past, Current, Upcoming.
Now I write a post about next month's event. I put this post in Upcoming category.
What I want is a scheduled category ...
1
vote
1answer
79 views
How to rename WordPress plugin?
I just wondering.
I already have create a plugin for WordPress, and just I like to change the name of it. Is that posible ?
ie: Lets say I have the plugin that It's definition looks like that
/*
...
1
vote
1answer
56 views
How WordPress can list users with specific capabilities
Is there a way to list only the users that has a specific capability, such us "publish_posts" ?
1
vote
1answer
46 views
Wordpress - Create a slug for image files
So here's the deal:
I need to make all posted images in wordpress have seo-friendly urls, much like slugs for a post. So, if I attach an image 'foo01234.jpg' with a title of "Foo Bar Image" to a ...
1
vote
1answer
53 views
Difference between response of -1 and 0 for wordpress plugin ajax call
What is the difference between a response of -1 and 0 with a wordpress ajax plugin?
http://codex.wordpress.org/AJAX_in_Plugins
The documentation states:
Error Return Values
If the AJAX request ...
1
vote
1answer
157 views
CMS: Automatically Adding Child Pages into Navigation / Sidebar
I am currently maintaining a section in one of our clients' website. It's fairly simple: one parent page and multiple child pages. The parent displays all the links to the child pages; and, once you ...
1
vote
1answer
68 views
WordPress Plugin Modification Logic
I'm using a very simple plugin called Semi Private Comments which does almost everything I need, it hides comments from other users and allows only the author of the comment and the admin to view the ...
1
vote
1answer
177 views
Wordpress add_meta_box not working in custom post type when in a Class
I am having a problem getting meta boxes into custom post types that are created with a plugin.
I have gone through the code a hundred times and am starting to wonder wether the Class is having an ...
1
vote
1answer
41 views
I'm developing a Wordpress Plugin and I need to create a Page with a form inside my plugin code
I am developing a Plugin.
I've developed the core of my plugin, I've also developed a Widget that I need to use with my plugin, but now I don't know where else to find information.
What I need to ...
1
vote
0answers
64 views
Making my plugin multi-site compatible
I want my plugin to be installed on each blog and create database tables per blog. I have this code:
register_activation_hook( __FILE__, 'install1' );
function install1() {
global $wpdb;
if ...
1
vote
1answer
74 views
Space Retention from TextArea in Options Framework Plugin for Wordpress
I am using the latest version of Options Framework (which is found here: http://wordpress.org/extend/plugins/options-framework/) on the latest build of Wordpress to build out some theme ...
1
vote
1answer
53 views
Worpress plugins - don't print the comments on a post page
i'm making a plugin where i want the comments in a single post page not to be printed at all. I need to query the database myself and print my own html with the results.
How can I make Wordpress to ...
1
vote
2answers
181 views
Wordpress Plugin, get HTML post content
I am building a wordpress plugin, that acts when the admin saves a new post.
I need to get the content of that post and i am retrieving $_POST['content'] and $_POST['post_content'].
The problem here ...
1
vote
1answer
29 views
wordpress - catching save event with a plugin
i'm writing my first plugin for wordpress and i have some doubts regarding the hooks.
So i want an action to be executed when admin saves a post, and i'm using (inside a class):
add_action( ...
1
vote
2answers
73 views
Wordpress plugin for restrict specific users to use web application?
I have a web application with I want to use for registered users to be able to use it.
I am looking for a wordpress plugin that can restrict specific users to use web application.
So bascally a user ...
1
vote
1answer
71 views
Add Page in Plugin
I'm writing my first Wordpress plugin and need to add a page that does processing of a form. I have a shortcode that adds a form to any page. That form needs to post to a URL where I can process the ...
1
vote
1answer
279 views
Writing to a file from my WordPress plugin
I've written a custom plugin for my WordPress site that relies on reading/writing from an xml data file within the plugin folder. When I test this standard PHP code for file reading/writing, it will ...
1
vote
2answers
213 views
Wordpress hook to pre-populate the content field on post-new.php?
I'm writing a plugin which will help administrate a question-answer database. 'Candidate' questions are stored in a custom DB, and I'm working on a function by which a user can promote a db question ...
1
vote
1answer
53 views
In wordpress how can I make sure a user only sees his own posts?
I have added a few custom roles to my blog. They work fine and the capabilities are as I have specified. The thing is that every user has a list of 'all' the posts in his posts window. He can only ...
1
vote
1answer
496 views
WordPress custom taxonomy parent-child navigation menu
I'm trying to create the following menu structure from custom taxonomies:
CAT 1
-SubCat1
-SubCat2
CAT 2
CAT 3
CAT 4
What I want to achieve is when I click on a child category (SubCat1 for example) ...
1
vote
1answer
951 views
WordPress and Call to undefined function add_menu_page()
I recently got into WordPress plugin development and I would like to add a menu page (the links in the left hand side menu). Previous SO questions and the WordPress codex say that it's as simple as ...
1
vote
1answer
341 views
need help with wordpress add_action init to recognise is_single
I have,
function my_function_init(){
global $post;
if(is_single()) {
echo $post->ID;
}
}
add_action('init', 'my_function_init');
this doesn't work for me, it doesn't ...
1
vote
1answer
357 views
Wordpress - Restrict access to plugin only
I have created a plugin using Wordpress and I would like to create a user account that ONLY has access to this plugin.
In other words when the user logs in to the wordpress admin panel this plugin is ...
1
vote
2answers
21 views
Wordpress Plugin development
I am developing a wordpress plugin.
In this plugin I am trying to get the hostname of the server.
Is this possible?
I see tags/filters like:
get_home_url
get_site_url
home_url
get_page_link
...