The plugin can execute php string in posts/pages, and display the output as the contents of posts/pages. Just quote what you want to execute in <exec>...</exec> or [exec]...[/exec] tag.
You can put the php code in post following way.
$filestr = file_get_contents('http://www.seocompany.ca/pagerank/page-rank-update-list.html');
if (preg_match('/</pre>
.*<\/p>/ums', $filestr, $matches)){
echo str_replace("
<a href="\"#page-rank-update-list-history\"">Top of Page Rank Update List History</a>
<pre>", "", str_replace("", "", $matches[0]));
}
When ever we write some code in post. That code need to visible very easily. Here are some code syntax highlighter through wordpress plugins which will be useful for developers and coders. There are some useful wordpress plugins for highlighting the code in wordpress post.
code syntax highlighter through wordpress plugins
While WordPress.com doesn’t allow you to use potentially dangerous code on your blog, there is a way to post source code for viewing. We have created a shortcode you can wrap around source code that preserves its formatting and even provides syntax highlighting for certain languages, like so:
To accomplish the above, just wrap your code in these tags:
your code here
The language parameter controls how the code is syntax highlighted. The following languages are supported:
actionscript3
bash
coldfusion
cpp
csharp
css
delphi
erlang
fsharp
diff
groovy
javascript
java
javafx
matlab (keywords only)
objc
perl
php
text
powershell
python
ruby
scala
sql
vb
xml
If the language parameter is not set, it will default to “text” (no syntax highlighting).
Code in between the source code tags will automatically be encoded for display, you don’t need to worry about HTML entities or anything.
There are some free plugins also helpful for syntax highlighting. I specially like the SyntaxHighlighter Evolved wordpress plugin. SyntaxHighlighter Evolved allows you to easily post syntax-highlighted code to your site without loosing it’s formatting or making any manual changes.
There is another plugin for syntax highlighting which also really nice.
WP-Syntax provides clean syntax highlighting using GeSHi — supporting a wide range of popular languages. It supports highlighting with or without line numbers and maintains formatting while copying snippets of code from the browser.
It avoids conflicts with other 3rd party plugins by running an early pre-filter and a late post-filter that substitutes and pulls the code snippets out first and then pushes them back in with highlighting at the end. The result is source code formatted and highlighted the way you intended.
This maintenance release addresses about 50 minor issues. The testing many of you contributed prior to the release of 3.0 helped make it one of the best and most stable releases we’ve had.
Download 3.0.1 or update automatically from the Dashboard > Updates menu in your site’s admin area.
The latest stable release of WordPress (Version 3.0.1) is available in two formats from the links to your right. If you have no idea what to do with this download, we recommend signing up with one of our web hosting partners that offers a one click install of WordPress or getting a free account on WordPress.com.
Note: If you downloaded 3.0.1 in the first 20 minutes of release (before 2200 UTC), you’ll want to reinstall it, which you can do right from your Updates screen.
We dont need to introduce the Barack Obama. Barack H. Obama is the 44th President of the United States. Here we collected Free Barack Obama wordpress themes.
When Barack Obama became President of the USA. We got really happy because that is the real world’s sign that world is changing and people are changing in very right and global direction. He shows the new way to the whole world. I can say only that. He is the result of Hope.
Free Barack Obama wordpress themes
He is first president of USA who used internet campaign very smartly and effectively. He used the power of social media and internet social media so effectively. That why I am giving the information about some social account information about Barack Obama.
Please check some very nice wordpress themes made for Barack Obama.
Probama Theme
Description
A timely WordPress theme for supporters of Senator Barack Obama’s political career and presidential campaign. Built-in control panel options allow easy management of images, video, podcasts and other RSS info.
When we are using the wordpress sites then we need to clean the database always. If your site is having more than 500 articles then you need to worry about server performance.
How to Optimize Your WordPress Database using plugin
Mysql load will impact your server. Many people are suggesting to use the WP-DBManager wordpress plugin. But forgot about plugin feature. That plugin specially made for database backup and managing the tables.
If you want to optimize your wordpress database then you need to use wp-optimize wordpress plugin. I found that is only plugin is helpful for really keep optimize your wordpress database.
I used that plugin. Before using that plugin my mysql database size was 135mb. After using that wp-optimize plugin features database size was 4mb. That means my database really optimized. My sites performance was also improved.
I really liked this wordpress plugin. Thanks to Ruhani Rabin who wrote this plugin.
Simple but effective plugin allows you to extensively clean up your WordPress database and optimize it without doing manual queries.
What is features of wp-optimize?
Enable/Disable trackbacks for all published post
Enable/Disable comments for all published post
Removal of stale post revisions
Removal of stale unapproved and spam comments
Removal of trashed comments
Removal of akismet metadata from comments
Removal of other stale metadata from comments
Mobile device friendly, now you can optimize your site on the go
Removal of all trackbacks and pingbacks
Cleaning up auto draft posts
Removal of transient options
Clear out the post trash
Automatic cleanup of all the integrated options (also uses retention if enabled)
Ability to keep selected number of weeks data when cleaning up
Option to add or remove link on wp admin bar.
Enable/Disable weekly schedules of optimization
Apply native WordPress MySql optimize commands on your database tables without phpMyAdmin or any manual query.
Display Database table statistics. Shows how much space can be optimized and how much space has been cleared.
Enabled for Administrators only.
Every-time you save a new post or pages, WordPress creates a revision of that post or page. If you edit a post 6 times you might have 5 copy of that post as revisions. Imagine if your post or pages are long and big. It is a huge number of bytes that’s on your MySQL overhead. Now WP-Optimize allows you to optimize and shrink your posts table by removing not necessary post revisions from the database. As example, if you have a post which is approximately 100KB data and you have 5 revisions of that post, the total space wasted is about 500KB. And if you have 100 posts similar to it, you have 50MB database space wasted.
Many people want to show wordpress show latest post from each category posts from there selected categories or all categories on home page. Here we given code snippet for this.
I this article I will show how easily you can achieve this.
wordpress show latest post from each category
Please following code in your home page which is your theme’s index.php file.
<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1">php</span>-->
$categories=get_categories($all_categories);
foreach($categories as $category) {
$post_args=array(
'showposts' =--> 1, // you can fetch number of articles from each category
'category__in' => array($category->term_id),
'caller_get_posts'=>1
);
$posts=get_posts($post_args);
if ($posts) {
echo '</pre>
Category: sprintf( __( " href="' . get_category_link( $category->term_id ) . '">name ) . '" ' . '>' . $category->name.'</pre>
<pre> ';foreach($posts as $post) {</pre>
<pre>
setup_postdata($post); ?></pre>
<div>
php the_title_attribute(); ?>" href="<!--?php the_permalink() ?-->" rel="bookmark">
<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1">php</span> the_title(); ?-->
<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1">php</span> the_excerpt(); ?-->
</div>
<pre>
<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1">php</span>-->
} // foreach($posts
} // if ($posts
} // foreach($categories
?-->
if you want to show the posts from specific articles then use following code.
In Last few years wordpress grown very unreadability. We all want to know about wordpress developers. As we know WordPress started in 2003 with a single bit of code to enhance the typography of everyday writing and with fewer users than you can count on your fingers and toes. Since then it has grown to be the largest self-hosted blogging tool in the world, used on millions of sites and seen by tens of millions of people every day.
Information about wordpress core developers
In This article we will talk about the wordpress core developers who started the wordpress.
He is the founding developer of the popular open-source blogging software WordPress and writes a popular blog ma.tt, a domain hack. After quitting his job at CNET, he has devoted the majority of his time to developing a number of open source projects and is a frequent speaker at conferences, such as Canada’s Northern Voice and the WordCamp events organized around WordPress software.
Ryan Boren. is a lead developer of WordPress and a co-conspirator at Automattic. He lives in Dripping Springs Texas with my wife, two kids, four goats, and one Pomeranian.
Mark Jaquith (JAKE-with) a Lead Developer on the WordPress web publishing platform, used by tens of millions of people around the world. Mark Jaquith make my living as a web publishing consultant to everyone from individuals to startups to established media companies.
Tiny Manly Code Editor (MCE). Do you use the Visual Editor? This is the man that makes sure that is usable in addition to patching plenty of other bugs.
Title Rebuilding. Peter is world class developer who often leads the weekly developer chat and is on the forefront of educating and assisting developers
Photo Gallery is best way to showcase your images. many plugins gives features of animated gallery. collection of free wordPress image gallery plugins.
Photo Gallery, picture gallery, or slideshow are the best way to showcase your images/photos to your readers. There are a lot of different methods to create them, and the alternative you’re most likely to be using Flash or JavaScript. Now Jquery slider plugins are very popular these days. There are many wordperss image gallery plugins which gives you really great features of animated gallery. Here is nice collection of wordpress gallery plugins.
Free WordPress Image Gallery Plugins
Below is the most downloaded image gallery plugins that we have chosen directly from the wordpress plugin directory. To make it even easier for you to choose, I also added live demo link under every image plugin! All of the resources in this post are categorized and hopefully you will find a number of new plugin that will be practical for your own work.
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with a Flash slideshow option.
NextGEN Gallery is the most popular WordPress gallery plugin, and one of the most popular WordPress plugins of all time, with over 7.5 million downloads.
It provides a powerful engine for uploading and managing galleries of images, with the ability to batch upload, import meta data, add/delete/rearrange/sort images, edit thumbnails, group galleries into albums, and more. It also provides two front-end display styles (slideshows and thumbnail galleries), both of which come with a wide array of options for controlling size, style, timing, transitions, controls, lightbox effects, and more.
Shadowbox is an online media viewing application that supports all of the web’s most popular media publishing formats. Shadowbox is written entirely in JavaScript and CSS and is highly customizable. Using Shadowbox, website authors can display a wide assortment of media in all major browsers without navigating users away from the linking page.
Javascript libraries supported are: None, YUI, Prototype, jQuery and MooTools. Prototype and jQuery are used from the Javascript libraries included with WordPress, YUI is loaded from Yahoo APIs and Mootools is loaded from Google APIs.
This plugin can also be used as a drop in lightbox replacement, without requiring you to edit posts already using lightbox.
By default this plugin will use Shadowbox for all image links, movie links, audio links and YouTube/Google Video links including those generated by the
Free WordPress Image Gallery Plugins
shortcode.
Shadowbox is licensed under the terms of the Shadowbox.js License. This license grants personal, non-commercial users the right to use Shadowbox without paying a fee. It also provides an option for users who wish to use Shadowbox for commercial purposes. You are encouraged to review the terms of the license before using Shadowbox. If you would like to use Shadowbox for commercial purposes, you can purchase a license from http://www.shadowbox-js.com/.
Lightbox Plus permits users to view larger versions of images, simple slide shows, videos and content all in an overlay.
Lightbox Plus ColorBox implements ColorBox as a lightbox image overlay tool for WordPress. ColorBox was created by Jack Moore and is licensed under the MIT License. Lightbox Plus ColorBox for WordPress implements ColorBox as a lightbox image overlay tool for WordPress. ColorBox was created by Jack Moore and is licensed under the MIT License. Lightbox Plus ColorBox permits users to view larger versions of images without having to leave the current page. Lightbox is able to add a lightbox to WordPress gallery images, display simple slide shows, video, forms and external content in overlays. The use of the dark or light background, which dims the page over which the image has been overlaid, also serves to highlight the image or video being viewed. Lightbox Plus ColorBox captures the image title for display in the overlay.
Lightbox Plus ColorBox uses WordPress’ built in jQuery library. Lightbox Plus ColorBox also uses the PHP Simple HTML DOM Parser helper class to navigate page content for inserting the Lightbox attibutes into elements.
As the name shows, this is just WordPress’s version of the jQuery Lightbox Plugin written by balupton, working perfectly with WordPress 2.2 or up, and fully compatible with K2
Darkens the current page and displays an image (like Lightbox, Thickbox, etc.), but is a lot smaller
(10KB) and faster.
Shutter Reloaded is an image viewer for your website that works similarly to Lightbox, Thickbox, etc. but is under 10KB in size and does not require any external libraries. It has many features: resizing large images if the window is too small to display them with option to show the full size image, combining images in sets, redrawing the window after resizing, pre-loading of neighbour images for faster display and very good browser compatibility.
This plugin offers customization of the colour and opacity settings for the background and colour for the caption text, buttons text and the menu background.
There are options to enable it for all links pointing to an image on your site (with option to exclude some pages), or just on selected pages. It can be enabled only for image links with CSS with option to create a single set or multiple sets for each page.
The plugin can also “auto-make” image sets for each Post, so when several posts are displayed on the “Home” page, links to images on each post will be in a separate set. See the built-in help for more information.
Seamlessly integrates FancyBox into your blog: Upload, activate, and you’re done. Additional configuration optional.
You can easely customize almost anything you can think about fancybox: the border, margin width and color, zoom speed, animation type, close button position, overlay color and opacity and even more advanced option like several options to group images into galleries, and more…
By default, the plugin will use jQuery to apply FancyBox to ANY thumbnails that link directly to an image. This includes posts, the sidebar, etc, so you can activate it and it will be applied automatically.
FlippingBook WordPress Gallery plugin helps you to create Image Gallery with Page Flip effects on your blog.
Do you need to show your photos or publication to the best advantage and post them in a photo gallery speedy manner, don’t you? You need to make a bright and memorable presentation, portfolio or image gallery?
Convert your WordPress Blog into a full featured photoblog in virtually no time. Use the full range of WordPress functions and plugins: Benefit from the big community WordPress has to offer.
What is YAPB / What can you expect?
A non invasive WordPress-plugin that converts wp into a easy useable photoblog system
Easy image upload – All wordpress post-features can be used
On the fly thumbnail generation – Use multiple thumbnail sizes where and when you need them: Thumbnail generation gets controlled by the theme.
EXIF data processing and output
Self-learning EXIF filter – Your own cameras tags can be selected to be viewed.
Full i18n-Support through gnutext mo/po files
YAPB Plugin Infrastructure for extended functionality
Ping additional update-service-sites when posting a photoblog entry.
Nearly every WP-theme can become a photoblog in virtually no time.
Out of the box configurable “latest images” sidebar widget
You’ll get a photoblog system based on wordpress – Decide if you want to post a normal WordPress article or a photoblog entry. Be free to use all available extensions / plugins of the WordPress platform 😉
Be the owner of your own photos on your own webhost
The WP-SimpleViewer plugin allows you to easily create SimpleViewer galleries with WordPress. SimpleViewer is a free, customizable Flash image gallery. Images and captions can be loaded from the WordPress Media Library or from Flickr.
Add SimpleViewer Flash image galleries to your posts and pages. Easy to use and several options to make it fit your needs.
Lazyest Gallery is an integrated image gallery with automatic thumb and slide creation, comments on images, and a slide show.
Create a photo gallery from your existing photo directories.
If you are new to Lazyest Gallery, please consider Eazyest Gallery. Eazyest Gallery is the successor to Lazyest Gallery and is far better integrated with WordPress, and compatible with popular plugins.
This gallery basically needs just two settings: Your image directory and your gallery page. Lazyest Gallery automatically creates a photo gallery with folders, sub folders, thumbnail pages and slide shows.
If you want more, the gallery offers a multitude of options by featuring a smart back end management site. You can sort photos through folders and add captions, comments and descriptions with minimal effort. If you are tired of uploading photos through the WordPress server, this plug-in will make it a breeze with their FTP auto-indexing integration.
This plugin allows you to easily display Flickr photos on your site. It supports user, set, favorite, group and community photostreams. The plugin is relatively easy to setup and configure via an options panel. It also has support for an image cache located on your server.
Allows you to integrate Flickr photos into your site. It supports user, set, favorite, group and community photostreams.
This Flickr plugin for WordPress will allow you to pull in your Flickr photosets and display them as albums on your WordPress site. There is a pretty simple template provided which you can customize to 100% match the look and feel of your own site.
The plugin is customizable in a number of different ways. There are options to allow you to hook it up with a number of different Lightbox-style popup overlay display libraries. Third party commenting services such as Disqus are also supported, allowing your visitors to comment on your photos without hopping over to Flickr.com. A simple Flickr widget is also included to let you easily include your photos into your blog’s sidebar.
On the backend, this plugin will add a new Flickr icon to your WordPress edit screen which will allow you to easily insert your Flickr photos and albums into your blog posts with just a couple clicks. You can either have your inserted photos link back to your WordPress Flickr photo album or directly to your Flickr.com photo page.
Quickly and easily add Flickr galleries, photos, and even custom search results into your WordPress pages and posts.
Using the “shortcodes” system in WordPress 2.5 and up, this plugin will allow you to quickly and easily incorporate your Flickr photos into your WordPress pages and posts.
Features include:
A quick gallery of your recent photos, photosets and most popular photos.
Easy database caching (just click a checkbox)
Displays the photos from one photoset
Displays all of a user’s photos with given tags
Displays the results of a custom search
Inserts a single photo into your content
Embeds Flickr’s flash movie player for videos
Authenticate to display your private photos
Lightbox script makes it easy to browse photos without leaving the page
Plugin API to let sites configure the tabs in their gallery
View photosets in the gallery mode without leaving the page
Lightboxes are now generated for every gallery mode
WordPress MU Support
Pagination in galleries
All images smaller than “medium” will load in the lightbox effect (if enabled) when the user clicks on them.
Add a “Collections” tab to the default gallery
Select which tabs the gallery displays
Set the lightbox to display larger than “medium” photos if the user’s browser window is large enough.
Easier “Web” based authentication to the Flickr API.
New: Show the photo’s description inside the lightbox alongside the larger photos.
This plugin adds cropping, resizing, and rotating functionality to WordPress’ image upload and management dialogs. Scissors also allows automatic resizing of images when they are uploaded and supports automatic and manual watermarking of images. Additionally, images that are resized in the post editor are automatically resampled to the requested size using bilinear filtering when a post is saved, which improves the perceived image quality while reducing the amount of data transferred at the same time.
Please note that WordPress versions 2.9 and newer are not supported!
When the first version of Scissors was published in October 2008 it was available only in English and German. Since then translations into new languages have been contributed by the following kind individuals. Thank you for your time and initiative!
Scissors enhances WordPress’ handling of images by introducing cropping, resizing, rotating, and watermarking functionality.
For WordPress 2.9 – 3.0 please download here :http://dev.huiz.net/2010/01/03/wordpress-plugin-scissors-for-v2-9/
Grand Flagallery – powerfull media gallery content plugin. Easy interface for handling photos, image galleries, audio and video galleries.
With this gallery plugin you can easy upload images, create music and video playlists, create photo gallery, group pictures in photo slideshow and add descriptions for each image, mp3 or video – Grand Flagallery is the smart choice when showing the best of your product or describing in brief any event. Grand Flagallery can easily beautify your site with photo gallery, mp3 player, video player, banner rotator, nivo slider or nice slideshow widgets. SEO optimized, compatibility with Google Reader, FeedBerner, etc.
Used to create a customizable rotating image gallery anywhere within your WordPress site.
Featured Content Gallery creates an automated, fully customizable rotating image gallery anywhere within your WordPress site. Choose your images and display categories, pages or posts with custom overlay text and a thumbnail carousel. Custom options include gallery size, color, style and more.
Creates a dynamic gallery of images for latest or featured content selected from one category, a mix of categories, or pages.
This plugin creates a dynamic gallery of images for latest and/or featured content using either the JonDesign SmoothGallery script for mootools, or a custom jQuery script. The plugin dynamically creates the gallery from your latest and/or featured content by either automatically pulling in the first Image Attachment from relevant Posts/Pages, or by specifying image URLs in a DCG Metabox in the Write screen for the relevant Posts/Pages. Additionally, default images can be displayed in the event that Posts/Pages don’t have an Image Attachment or manually specified image. A Dashboard Settings page gives access to a comprehensive range of options for populating the gallery and configuring its look and behaviour. The DCG can be added to your theme as a Widget, or by using a template tag.
For best results, make sure that your theme supports Post Thumbnails, introduced in WP 2.9.
Compatible with network-enabled (multisite) WordPress 3.0+, though available plugin options are slightly reduced.
Now these days best and attractive images are the part of every articles. I can say image is useful for your posts. Images made easy to understand to readers what you want to say in the post. Here we given the list of resources where you get free image for wordpress posts
Many wordpress blogger go to google for images and find the images. They put the image into their blogs. Some time that will cause you serious legal issues.
where we get free image for wordpress posts
There are very good places to find good free images for your blogs. Here is the list of that.
Flickr: Flickr is a really great source for free pics, however make sure to contact the owner of the picture and ask permission before using it. I have done this a lot in the past and a lot of people are willing to share their pictures. Give them a good reason, maybe a quick complement and offer a link back to their Flickr profile.
Stockvault: Stockvault has a lot of nice stock photos, just be warned that this site is filled with adsense.
deviantART: This is a huge community of artist sharing all sorts of images and graphics. Again, checkout the license of the graphic as a lot of these aren’t free, yet it is still a great source for free images if you become familiar with the site.
Stock.xchng: Saving the best for last here you’ll be able to find a lot of great stock photos as well as PSD’s, templates, background images and more. Please checkout the restrictions before using
Free Images – Free Stock Photos: FREE digital photographic images for web, dtp, and design. Royalty and cost-free stock photos. Free stock photographic library.
gettyimages: Getty Images royalty-free gives creative freedom to crop, manipulate and combine stock photos for your project needs. Simple, affordable pricing, unlimited use.”
Keeping your wordpress database is very important for wordpress database. In this article we explained, How to clean up and optimize wordpress database. This will improve your site speed aslo. Many times you install the wordpress plugins and some time you dont want that plugins and you delete that plugins.
How to clean up and optimize wordpress database
There is very nice wordpress plugin is avilable for database backup.
WP-DB-Backup allows you easily to backup your core WordPress database tables. You may also backup other tables in the same database.
But that plugins create some tables in your wordpress database. You need to remove that tables from your wordpress database.
Imp note: when ever you are cleaning the database or deleting the unwanted tables from wordpress database. Please consult with your web administrator.
Dont forget to take a full backup of your database.
This tutorial should be forward-compatible with WordPress 3.0
Install WP-DB-Backup by Austin Matzko
Mouse over Tools so that the down arrow appears
Click the down arrow
Click Backup
You’ll see something like this:
On the left are the default database tables included with WordPress. All of these are included every time you backup. The only thing you have to decide here is whether to exclude spam comments from being backed up (I recommend this) and whether to exclude post revisions (I recommend excluding these too, unless you have a specific reason for keeping revisions).
On the right is a list of additional database tables, most of which were probably created by plugins. There’s also a table called that will end with the name “commentmeta” – this can be used by plugins.
If your plugins have created a lot of data that you would like to save, or you’ve spent a lot of time configuring particular plugins, you’ll want to backup these tables. Otherwise, you can keep your database backups smaller by not checking them.
Next we see the Backup Option. There are three choices here:
A. Save to the server
This will save a backup of your database as a file on your web server. I don’t recommend this.
B. Download to your computer.
This will create a database backup file that you can save to your local computer.
C. Email backup to:
This allows you to send a copy of the backup to any e-mail address you’d like.
Let’s go ahead and download a copy to our hard drives now.
Check options you want in the Tables section then click “Backup now!”
You should see a progress bar, and when that’s done your browser will prompt you to save the file. You can save this file wherever you’d like.
There’s another section called “Scheduled Backup.” This is where this program gets really great.
Here we can schedule a backup to be e-mailed to a particular e-mail address however often we’d like. I recommend checking selecting “Once Daily.”
On the right, you’ll see that list of optional tables again. Check the ones you want to backup every time the backup runs.
Enter the e-mail address you want the backups delivered to in the “Email backup to:” field.
Click “Schedule backup.”
You should now get a backup file as an e-mail attachment every day. You should save these attachments to your local computer. If you’re using Gmail or another web mail host that has a lot of storage space, you might want to leave your databases on their server as an additional off-site backup. Be aware that that’s an additional security risk – if your e-mail account is ever compromised, the would have access to all of your database backups.