The api tag has no wiki summary.
0
votes
0answers
29 views
Creating wp_crons using settings API?
I am trying to create my first plugin settings page using the Settings_API but I am not sure what the correct method to use here is. The plugin will parse RSS feeds into posts. The options I want to ...
0
votes
1answer
142 views
New Twitter API and Twitter count + timeline doesn't work anymore [closed]
As some of you might know, Twitter has changed their API.
With that some of my plugins / codes stopped working.
I tried to fix them on my own, but failed.
I tried googling for the new API URL and I ...
0
votes
1answer
25 views
Wordpress Settings API settings not saving for some users
I created a plugin you can see here: http://wordpress.org/plugins/vegas-fullscreen-background-slider/
Some users are saying that settings aren't saving. For me it's working fine but I'm fairly new ...
0
votes
1answer
23 views
How to integrate Yelp API
I'm trying to figure out how to add data from an external site to a basic wordpress site I've created. I'm generally comfortable with basic wordpress setup and features, but now I'm trying to ...
-1
votes
0answers
21 views
Is there any plugin which exposes data as JSON and can be visited by AJAX? [closed]
I want to use some javascript frameworks (e.g. AngularJs) to write the front end for wordpress.
I'm looking for some plugin which can expose wordpress data (e.g. posts, comments, pages, tags) as ...
0
votes
0answers
22 views
Get plugin info from Wordpress.org repository API with plain PHP code [duplicate]
The documentation of the Wordpress.org API is quite terrible. It links to a website that gives a 502 Bad Gateway error.
To be precise, how should my POST request look to the ...
0
votes
1answer
42 views
Wordpress Login Customization for External Authentication
I'm not sure which approach is best but my situation is something need to tie the admin login with external authentication source. I mean, WP normally is:
wp-admin ---> Check with WP Database ...
0
votes
1answer
75 views
Count posts returned by get_posts in external PHP script
I'm using WP from an external PHP script by including the wp-load.php file.
All functions and everything works as expected so far, except one thing: I can't get the $wp_query->found_posts to work ...
7
votes
1answer
332 views
How to create an API for my plugin?
I have been developing plugins for WordPress. Most plugins I have developed with two three classes and not so huge like Buddypress, WooCommerce or etc.
I am planning to make two open source plugins ...
0
votes
0answers
140 views
Wordpress + PhoneGAP [closed]
I'v been working around on solution to manage Wordpress user sessions with phoneGAP, un-top of that i must limit the content being shown and also the number of active session per user. Some of the ...
0
votes
0answers
53 views
Get latest Facebook page update and display it in theme
Is it possible to display the latest post from a Facebook page (Not personal profile) and display it on my website?
I've tried this http://wordpress.org/extend/plugins/recent-facebook-posts but it ...
0
votes
1answer
23 views
What's the most minimal way in which a page can be hooked into WP?
I do a fair bit with custom API's on WordPress-based sites, typically by creating page templates.
However, creating a custom page template, then creating a WP Page that utilizes it is kind of a pain ...
1
vote
1answer
28 views
How can I send edits to my blog programmaticly?
I have started a very simple wordpress blog for a hockey pool I run. The site is located at: http://thekeeperpool.wordpress.com/
I manage the actual stats counting and player movement using a local ...
0
votes
0answers
32 views
Is it possible to enqueue the Youtube API script or does it have to be inline?
The code below is the main part of a function in my functions.php which returns a div and script which ultimately output a youtube API iframe to the template where the code had been called from. At ...
0
votes
0answers
70 views
Wysija API - can't find any docs anywhere [closed]
As I mentioned in the title, I can't find anywhere some reference manual about Wysija Newsletters plugin.
On my project, I have some users admin area, so user can login to the site and change there ...
1
vote
0answers
59 views
Connect external web app to wordpress
We have a web app that will allow users to edit their videos, add intro/outro/watermark. Once the user already done on their video. We need to provide an option to post/syndicate their video as a ...
8
votes
1answer
249 views
Using the Rewrite API to Construct a RESTful URL
I'm trying to generate rewrite rules for a RESTful API. I just want to see if there is a better way to make this work than having to write out every possible rewrite combination.
Ok so I have 4 ...
0
votes
1answer
86 views
Import tumblr post to wordpress blog
When I add a new post in my tumblr account, automatically that post of tumblr would be sync with my wordpress account. Its not necessary that at sync time I have to be logged in wordpress. In simple ...
0
votes
2answers
49 views
Is Wordpress API visible from PHP file called in htaccess
I'm trying to add some rewriterules in the .htaccess file to deal with hotlinked images - specifically I want to add the URL from the post where the image appeared to the header location information ...
2
votes
3answers
142 views
WP.org API: Accessing plugin downloads “Today” value?
I'm developing a plugin to display stats for downloads and various other information that developers might want to display on their sites about what they have developed.
I've found documentation on ...
2
votes
2answers
77 views
How to override a function call in functions.php?
In functions.php of a theme makes a call to show_admin_bar(false) which hides admin bar in front end:
if (!is_admin())
{
wp_deregister_style( 'bp-admin-bar' );
if ( function_exists( ...
4
votes
1answer
85 views
External WordPress API
I'd like to manipulate a WordPress website from another program/website. IS there an API already written that provides access, and authentication, to do this?
Ideally, I'll be using a multi-site ...
2
votes
1answer
141 views
In the new Theme Customizer API, how to send a value from the front back to the admin panel?
I'm digging a bit into the new Theme Customizer API, in particular into the javascript one, and what I find is delighting.
I've managed to add my own custom parameters, and I also have the javascript ...
0
votes
1answer
97 views
How to create download links based on Custom Fields with Rewrite API
For me this is quite hard to do, but I guess that this could be easily done by an expert. :)
Let's suppose I have a post, which is a custom post type resources, with the following data:
Post Slug: ...
0
votes
1answer
104 views
wp_signon returns user but the user is not logged in because wp installed on subdomain. How to make it work?
I am using the WordPress API to get the user login. My code:
<?php
define('WP_USE_THEMES', false);
require('wp-blog-header.php');
$creds = array();
$creds['user_login'] = 'user';
...
2
votes
1answer
583 views
WordPress JSON output
Update: I've changed the code as following
$cats = get_categories();
$output = array('categories' => array());
function collect_posts(){
$args = array( 'numberposts=' => 9999, 'category' ...
1
vote
1answer
118 views
How to add an alternative style sheet as a theme option?
I'm trying to create a few extra theme options in the "customise" section of the wp admin menu. I would like to offer an option to load an alternative style sheet.
Question: How can I adapt the ...
0
votes
1answer
38 views
Lead form that submits to 2 external APIs
I need to add 2 registration forms to my wp website, each form should submit the information in it to 2 different APIs.
I don't know even where to begin. Is there a plugin that can help me handle the ...
-1
votes
1answer
90 views
More Fields WP Plugin
one of my clients use More Fields WP plugin and we want to generate a feed of the data entered using that plugin.
http://wordpress.org/support/plugin/more-fields
Have installed JSON WP plugin to ...
-3
votes
1answer
283 views
How to import data from another website using an API link?
I have an API link ($content bellow), and I need to display the content fetched from this link in the dashboard. I don't have slightest idea how to do this.
if( !class_exists( ...
1
vote
0answers
59 views
permalinks with get variables
I'm trying to create my own permalinks with wordpress rewrite API. I have been registering my get variables as it follows
add_filter( 'query_vars','driver_vars' );
function driver_vars( $vars ) {
...
10
votes
3answers
314 views
Wordpress API Menu/Submenu Order
I'm developing a child-theme using Wordpress 3.4.2 and the development version of the Options Framework by David Price. This is my first theme and I'm relatively new to this, so I've had a look into ...
0
votes
2answers
201 views
Does Wordpress support a shortcode calling itself from within a shortcode call?
I've built a super-crazy Wordpress framework that has a million and one shortcodes, one of those is a columns shortcode which supports a count parameter that allows you to define a column and the ...
1
vote
1answer
221 views
API integration with WordPress
I'm trying to integrate a 3rd party API with WordPress. I fear this is above my head. I was this code but I'm not exactly sure how to make is work in WordPress. Is it possible?
$ch = curl_init();
...
0
votes
0answers
89 views
Facebook. Fetch user photos and post them to blog on the user side [closed]
So I'm looking for some plugin or solution to implement such function. Fetch facebook photos (using json I guess) and post them to the blog.
1
vote
1answer
125 views
Exposing data using a custom Wordpress API
I'm attempting to create an API through Wordpress exposing some of my back-end data. I've come to the conclusion that I cannot have a stand alone page (plugin) exposing this data because Wordpress is ...
0
votes
2answers
138 views
Multiple sub directories for theme template pages
I apologize if this questions has already been answered, I have a feeling I'm just not using the right terminology for my search.
I'm in the process of building a base theme for my employer. One of ...
0
votes
1answer
197 views
Plugin options will not save in database
I'm not sure what's happening here, since this has worked in another plugin I've created. I'm simply trying to store data in the options table.
Here is the code I'm using:
function on_myplugin_start ...
0
votes
1answer
151 views
how do I delete (not exclude) a menu item from navigation bar
I'm building a site's navigation bar programmatically, using the following code:
wp_update_nav_menu_item($menu->term_id, 0, array(
'menu-item-title' => $page_data->post_title,
...
0
votes
1answer
190 views
get_pages and get_posts returning different data?
this is driving me crazy...
I have an admin plugin page that lists pages for a wordpress website. I'm trying to list all the pages using get_pages() but for some reason once pages are published they ...
2
votes
1answer
113 views
wp_insert_comment error. puzzled by date value
I am trying to programmatically insert comments in a bulk operation as part of migration routine.
Comments are in a SQL server table.
I receive the date info from the SQL server table field and ...
3
votes
2answers
155 views
List Table API - Safe to use?
Just curious what developers think about extending the WP_List_Table class for use on plug-ins.
I am working on a plug-in that will show a list of users (ID, name, email) then pull data from another ...
1
vote
1answer
738 views
How to create a drop down list with pages to a themes options page?
I'm building a themes options page using settings API. Everything is ok, but i now i want to create a drop down list populated with pages and i don't know how to!
For example, i have this piece of ...
3
votes
1answer
999 views
Create API for single sign-on with 3rd party site
My site needs to integrate with a 3rd party software, which will live on its own sub-domain, hosted by the software company. I need to provide the 3rd party developers with an endpoint that they can ...
0
votes
1answer
159 views
hybridauth (google OAuth integration) and WP problems
I'm trying to implement the script shown here:
http://hybridauth.sourceforge.net/userguide/Integrating_HybridAuth_SignIn.html
To allow people to sign in with Google to my site. However I am getting ...
1
vote
1answer
180 views
How Can I Use $wpdb in PayPal IPN file?
I'm currently writing a plugin that requires the PayPal IPN, since the IPN is not inside the main plugin file, I have no way to use $wpdb. If you know a way to do this that will work with all ...
1
vote
1answer
77 views
Custom Post-to-Post with multiple parents?
I currently have a custom post type of "Faculty" - each faculty can have zero or many custom post type "Bibliographies," and a bibliography can belong to one or more faculty.
What is the best ...
0
votes
1answer
217 views
Trying to integrate wordpress query on other website - getting redirection to wp-install
i'm trying to replace news system on my website with posts from wordpress site. I have main site in (example) /var/www/site and working Wordpress blog on /var/www/site/blog
Tried to do that: ...
11
votes
2answers
426 views
New WP_Customize API - how does it work under the hood?
I noticed that if you make changes trough the new "customize" feature, when you navigate on a different page within the iframe preview document, your changes still apply, even if they are unsaved.
It ...
0
votes
1answer
146 views
term_exists returns NULL
According to the codex ( http://codex.wordpress.org/Function_Reference/term_exists ), term_exists returns some mixed results but not NULL. In my case, I'm getting NULL, what am I doing wrong?
In ...