• Skip to main content

Eric L. Ingram

WordPress Consultant

  • HOME
  • ABOUT
  • WORK

Blog

Web site for my Father

March 17, 2013 By Eric Ingram

My dad is a local pastor and we started a website for him a few years back.  Unfortunately our schedules have been so busy we really did not put much time into it.  Well times have changed and after a refresh of how the site looks we are finally up and going.  If you are looking for the good word then check out his site.

Albania site rank .

Exclude category from recent posts

November 19, 2011 By Eric Ingram

If you are looking for a way to exclude category from recent post (post that show up on your homepage).  Here is a quick and simple way to do it.  First find the category id by editing the category you want to exclude.  From your dashboard click Categories and edit the category you want to exclude. .  Once you select edit, in the URL you’ll see the category ID.  Make a note of this number.

I use frameworks (genesis), so I would open my child theme functions.php file. And add the following code:

//Exclude category from recent posts
add_filter(‘pre_get_posts’, ‘exclude_category_from_home’);
function exclude_category_from_home($query) {
if ( $query->is_home ) {
$query->set(‘cat’, ‘-id‘);
}
return $query;
}

Now just replace the “id” with your category number save the file and there you have it.

New AgentPress 2.0 Child Theme

September 30, 2011 By Eric Ingram

AgentPress 2.0 is now available from StudioPress.  This is a great solution for real estate agents to edit and update property listings, integrate with IDX, and display featured listings.  I’ll be speaking at a REBarCamp in October, so I’m looking forward to speaking about this new child theme.

AgentPress - The Leading WordPress Theme for Real Estate Professionals

list of sites domain technical data link checker . .

What is a Hook?

August 18, 2011 By Eric Ingram

Hooks, Actions and Filters

Hooks are provided by WordPress to allow your plugin to ‘hook into’ the rest of WordPress; that is, to call functions in your plugin at specific times, and thereby set your plugin in motion. There are two kinds of hooks:

  1. Actions: Actions are the hooks that the WordPress core launches at specific points during execution, or when specific events occur. Your plugin can specify that one or more of its PHP functions are executed at these points, using the Action API.
  2. Filters: Filters are the hooks that WordPress launches to modify text of various types before adding it to the database or sending it to the browser screen. Your plugin can specify that one or more of its PHP functions is executed to modify specific types of text at these times, using the Filter API.

You can sometimes accomplish the same goal with either an action or a filter. For example, if you want your plugin to change the text of a post, you might add an action function to publish_post (so the post is modified as it is saved to the database), or a filter function to the_content (so the post is modified as it is displayed in the browser screen). speed test website .

WordPress 3.2 now serving

July 4, 2011 By Eric Ingram

WordPress 3.2 is now available to the world.  It is the 15th major release for WordPress.  The focus for this version was to make it lighter and faster.  It is always a good practice to stay current on your version of WordPress, any themes and the plugins you are using.

There is a new default theme Twenty Eleven, full screen editor, and extended admin bar.

The new version also requires the version PHP 5.2.4 or greater and MySQL 5.0.15 or greater.  There are many other features and tweaks so when you get a chance upgrade today.

 

  site generator . domain list expiration of domains . . peta dunia .

Recommended Plugins for WordPress

January 28, 2011 By Eric Ingram

WordPress offers many plugins to extend the functionality to do almost anything.  There are currently over 16,000 plugins available in the Plugins Directory at WordPress.    Many of the plugins have the same function and features as others.  How you choose, begins with some of my recommended plugins in this article.

All-in-One SEO – If you want any chance of ranking in search engines this is a must have plugin.  All-in-One SEO pack allows you to add keywords, titles and meta descriptions to each page and blog post of your site.

Google XML Sitemap – This plugin will generate a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it’s much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. Additionally it notifies all major search engines every time you create a post about the new content.

W3 Total Cache – This plugin makes a copy of your web page on the server and by doing so it increases site performance and reduces the resource consumption. It is essential that you have this plugin just incase if your site hits the Front Page of a social media network such as digg or stumbleupon, without this plugin, your server will most likely crash.

CformsII – CformsII offers lots of flexibility in there contact form solution.  The plugin provides SPAM protection, Ajax support, multi-recipients, and database tracking. 

Flickr Gallery – This gallery allows you to insert your flickr gallery in your web page/blog using shortcodes.  The installation is seamless and works great.

  • Go to page 1
  • Go to page 2
  • Go to Next Page »

Copyright © 2021 ·Genesis Framework · Site by Eric Ingram