Articles with tag 'Plugin'


WPDK WordPress Development Kit

The WPDK (WordPress Development Kit) is a proprietary framework developed to speed up the development of the suite wpXtreme . The use of a framework, in addition to making the creation of plugins for WordPress faster it possible to concentrate in one place many features common to many plugins. The WPDK therefore represents an eproprio SDK for developing plug-ins (and not only), providing APIs and services that can be updated and improved over time.

Continued ...

Introducing wpXtreme

Since we presented wpXtreme we realized that many have not understood what potential this project has. With this first article I want, as well as CTO of wpXtreme Saidmade , explain all that we have done and are doing to make wpXtreme something unique.

What wpXtreme?

wpXtreme is a project, a stratup if you prefer, but really - or physically - to which products or services are we talking about? In the first instance wpXtreme is first and foremost a WordPress plugin for free download (coming soon) that provides immediate access to a series of improvements and services:

wpXtreme Schemas

Continued ...

WordPress folder functions: all paths lead to WordPress

WordPress offers many ways to access the names of its folders and build new ones. Here is a helpful list with examples performed, to be more clear, from a subfolder located in a hypothetical plugin:

Plugins

Let's start with plugins_url() useful to determine and build url when you write a plugin.

plugins_url ()

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/ / If this line is performed by
/ / Http://www.miosito.com/wp-content/plugins/my_plugin/classes/test.php

plugins_url ( ) ; $ R = plugins_url ();
/ / Http://www.miosito.com/wp-content/plugins/

plugins_url ( 'myscript.js' , __FILE__ ) ; $ R = plugins_url ('MyScript.js', __ FILE__);
/ / Http://www.miosito.com/wp-content/plugins/my_plugin/classes/myscript.js

plugins_url ( 'assets' ) ; $ R = plugins_url ('assets');
/ / Http://www.miosito.com/wp-content/plugins/assets

trailingslashit ( plugins_url ( 'assets' ) ) ; $ R = trailingslashit (plugins_url ('assets'));
/ / Http://www.miosito.com/wp-content/plugins/assets/

Continued ...

WordPress: retrieve the contents of private pages

Allotment from the post WordPress: retrieve the contents of a page to add some information. First of all it is possible to retrieve the contents of a page using a work like this:

1
2
3
4
$slug ) { getPageBySlug function ($ slug) {
get_page_by_path ( $slug ) ; $ ObjectPost = get_page_by_path ($ slug);
"the_content" , $objectPost -> post_content ) ; return apply_filters ("the_content", $ objectPost -> post_content);
}

Continued ...

WordPress Plugin Maker

I'm really happy to be able to present a preview of WordPress Plugin Maker, an application for Mac OS X (Snow Leopard) that allows you to create a skeleton of a WordPress Plugin in seconds, allowing you to set many parameters. The application is still under development, however, performs its task basis and is safely usable and functional. Some features have not yet been included and the other is awaiting feedback from the "few" lucky beta testers.

Continued ...

10,000 Thanks WP

WP Bannerize
A nice record and a great satisfaction!

Continued ...

WP CLEANFIX 0.3.0 beta release

WP CLEANFIX is a Plugin for WordPress (also compatible with WordPress MU - will exist as long as this distinction) I've written to optimize, maintain, clean, and fit our Database WordPress.

WP CleanFix

Continued ...

2.4.1 WP Bannerize

It was a little 'I wanted to report it, since WP Bannerize is about to hit 10,000 downloads! But time - lately - it really is a tyrant!

WP Bannerize Download

Continued ...

Browser or Mobile Browser?

Our website now is not only displayed by PCs. With the spread of mobile, thanks mainly to Apple iPhone, access to the site or blog is increasingly being made from mobile devices of various types. It is therefore need to know how many Web Developer intercept and identify the different "agents", that is, the means by which a user views (sailing) our pages.

Continued ...

Very short trick: WordPress, highlight the results of a search

There are many plugins for WordPress to enhance the features and performance of the "search" function. Almost all Available plugins have the useful and pleasant feature to highlight the search words in the search result. If you have no intention of further appensantire your WordPress installation but do not want to forego entirely similar functionality, here's how to easily implement a "highlights" of termii search results.

Continued ...