Archive for the 'Plugins & Ext' Category

WP Super Cache | WordPress Plugin

posted by admin
March 7, 2011

This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.

The static html files will be served to the vast majority of your users, but because a user’s details are displayed in the comment form after they leave a comment those requests are handled by the legacy caching engine. Static files are served to:

Users who are not logged in.
Users who have not left a comment on your blog.
Or users who have not viewed a password protected post.
99% of your visitors will be served static html files. Those users who don’t see the static files will still benefit because they will see different cached files that aren’t quite as efficient but still better than uncached. This plugin will help your server cope with a front page appearance on digg.com or other social networking site.

If for some reason “supercaching” doesn’t work on your server then don’t worry. Caching will still be performed, but every request will require loading the PHP engine. In normal circumstances this isn’t bad at all. Visitors to your site will notice no slowdown or difference. Supercache really comes into it’s own if your server is underpowered, or you’re experiencing heavy traffic. Super Cached html files will be served more quickly than PHP generated cached files but in every day use, the difference isn’t noticeable.

read more

Local Market Explorer | Word Press Plugin

posted by admin
February 12, 2011

This plugin allows WordPress to load data from a number of neighborhood-related APIs to be presented on a single page or within
your own pages / posts. The different modules that this plugin contains are as follows:

* Real Estate Market Stats (via Zillow)
* Real Estate Market Activity (via Zillow)
* Schools (via Education.com)
* Walk Score (via Walk Score)
* Yelp (via Yelp)
* Local Classes (via TeachStreet)
* Local Content from NileGuide (via Nile Guide)
* IDX / MLS Real Estate Data (via dsIDXpress)

visit Local Market Explorer Website

WP-Cache | WordPress Plugin

posted by admin
February 9, 2011

WP-Cache is an extremely efficient WordPress page caching system to make you site much faster and responsive. It works by caching Worpress pages and storing them in a static file for serving future requests directly from the file rather than loading and compiling the whole PHP code and the building the page from the database. WP-Cache allows to serve hundred of times more pages per second, and to reduce the response time from several tenths of seconds to less than a millisecond.

WP-Cache started from the ”Staticize Reloaded” by matt and billzeller. Most of their recommendatiosn also apply to WP-Cache. Current version, WP-Cache2, is a huge improvement over previous versions of WP-Cache.

WP-Cache is composed of two parts:

1. Two-phases WordPress hooks. The first is called at the very begining –wp-cache-phase1.php– when just few code has been compiled. The second –wp-cache-phase2.php– after all plugins have been executed. The first phase checks if the requested URL is already cached, if so it serves from the static file and finishes. The second phase stores the generated page in a static file for further request.

2. The WP-Cache plugin. This plugin configures and manages the whole process. It is easy to use and self-documented. It allows yoy to enable or disable cache, define expiration time for static pages, define rules for rejecting and accepting which URLs and php files can be cached, and shows and delete pages in cache.

read more

Executing PHP | WordPress Plugin

posted by admin
February 2, 2011

Executing PHP in a Widget, Page, or Post is possible!

The Exec PHP plugin allows php code to be typed into the editor and saved. But in order for this to work you will need to turn off your editor under Users > Your Profile.

With the ability to program php in the Word Press admin you have the option of creating your own forms, thus customizing your Word Press the way you want it.

Read the full description and downloadable the plug in for Exec PHP.

All In One SEO Pack | WordPress Plugin

posted by admin
January 25, 2011

Boost your internet presence by automatically adding a keyword description and title to every page and post.

The All In One SEO Pack will increase your Search Engine Optimization just by enabling it.

Download the All In One SEO Pack

After installing the plugin you will see the following fields for each post and page in your Word Press:

• Title
• Description
• Keywords

If you are Shepherds Loft’s customer and you do not have this plug installed then just “Submit A Ticket” to request installation.

MediaElement.js – HTML5 Video & Audio Player

posted by admin
January 23, 2011

A video plugin for WordPress built on the MediaElement.js HTML5 video and audio player library. Provides Flash or Silverlight fallback players for non-HTML5 browsers and also supports iPhone, iPad, and Andriod. Supports MP4, OGG, WebM, WMV, MP3, WAV, WMA files as well as captions with WebSRT files.

read more

Typical Usage for audio

[audio src="http://mysite.com/mymedia.mp3"]

Shortcode Options

src

This location of any audio or video file

[video src="http://mysite.com/mymedia.mp4"]

type

The media type of the resource

[video src="http://mysite.com/mymedia?xyz" type="video/mp4"]

mp4

The location of the h.264/MP4 source for the video.

[video mp4="http://mysite.com/mymedia.mp4"]

mp3

The location of an MP3 file for video

[audio mp3="http://mysite.com/mymedia.mp3"]

ogg

The location of the Theora/Ogg source for the video.

[video ogg="http://mysite.com/mymedia.ogg"]

webm

The location of the VP8/WebM source for the video.

[video ogg="http://mysite.com/mymedia.webm"]

poster

The location of the poster frame for the video.

[video poster="http://mysite.com/mymedia.png"]

width

The width of the video

[video width="640"]

height

The height of the video

[video height="264"]

loop

Loops the video or audio when it ends

[video src="http://mysite.com/mymedia.mp4" loop="true"]

preload

Start loading the video as soon as possible, before the user clicks play.

[video preload="true"]

autoplay

Start playing the video as soon as it’s ready.

[video autoplay="true"]

fullscreen

Disables the fullscreen button

[video src="http://mysite.com/mymedia.mp4" fullscreen="false"]

duration

Disables the duration output

[video src="http://mysite.com/mymedia.mp4" duration="false"]

volume

Disables the volume slider

[video src="http://mysite.com/mymedia.mp4" volume="false"]

progress

Disables the progress bar

[video src="http://mysite.com/mymedia.mp4" progress="false"]

captions

URL to a WebSRT captions file

[video src="http://mysite.com/mymedia.mp4" captions="http://mysite.com/mymedia.srt"]

Simple Video

Basic playback options

[video src="http://mysite.com/mymedia.mp4" width="640" height="360"]

All Attributes Video

All options enabled

[video mp4="http://mysite.com/mymedia.mp4" ogg="http://mysite.com/mymedia.ogg" webm="http://mysite.com/mymedia.webm" poster="http://mysite.com/mymedia.png" preload="true" autoplay="true" width="640" height="264"]

Simple Audio

Basic playback options

[audio src="http://mysite.com/mymedia.mp3"]

All Attributes Audio

All options enabled

[audio mp3="http://mysite.com/mymedia.mp3" ogg="http://mysite.com/mymedia.ogg" preload="true" autoplay="true"]

Flash Video Player plugin for WordPress

posted by admin
January 23, 2011

The flash video plugin for WordPress allows the addition of video (and other media) to a WordPress website using standards-compliant markup and the leading open source software (Jeroen Wijering’s FLV Player and Geoff Stearns’ SWFObject Javascript Library). A full options menu is available with post-level overrides for endless customization.

Installation is quick and easy, and no additional setup/coding/php knowledge is required. This plugin is low footprint, creating no tables, and uninstalling cleanly. Version 5 provides full support for skinning the player, integration with Google Analytics, and the capability to display ads from LongTail Solutions.

You can now enter the following into a post or page in WordPress to insert a video: flashvideo file=video/video.flv place the open bracket [ before and the close bracket after /]

read more

Mobile Website or Blog

posted by admin
December 3, 2010

Word Press PlugIn
Mobile Pack

Turn your website or personal Word Press Blog into a mobile compatible website.

Just install the Mobile Pack Word Press plug in.

The WordPress Mobile Pack is a complete toolkit to help mobilize your WordPress site and blog.

It includes a mobile switcher to select themes based on the type of user that is visiting the site, a selection of mobile themes, extra widgets, device adaptation and a mobile administration panel to allow users to edit the site or write new posts when out and about.

For assistance call David at 866.858.5638 x 7

Internet Marketing: Custom Post Text

posted by admin
November 24, 2010

Subject: Internet Marketing
Word Press Plugin: Custom Post Text

An easy way to automatically and consistently add a “Call to Action” to all your posts. The Custom Post Text plugin for Word Press is easy to install and to do.

This plugin creates an excellent opportunity to automatically add a call to action like “Get Noticed With A New Media Presence” with a link to a specific page or post with more information and the sign up box.

In the Post Footer Text add a link using the a tag with the title attribute and appropriate anchor text.

The anchor Text is the most important part of the process. If you read the Wiki about anchor text it explains the importance of the words used that are linked. Terms like “click here” do not add any value to your SEO.