How to publish your posts from Google Docs?

How to publish your posts from Google Docs? Yes, you can publish your posts from Google docs. Well, I still prefer wordpress it self, because of its customable features. You can publish your google documents using the following steps: 1) Go to Google Docs and sign in to your account. 2) Write or compose your …

Read More

How to upgrade wordpress from Unix Shell?

How to upgrade wordpress from Unix Shell? 1) Backup existing database and wordpress directory Lets take an example of 28Nov2006. Type the following commands at shell prompt: $ mkdir /backup/wp/28nov2006 $ mysqldump -u user -p WP-DATABASENAME > /backup/wp/28nov2006/blog.db.sql $ tar -zcvf /backup/wp/28nov2006.tar.gz /var/www/html/blog 2) Download latest wordpress CMS $ cd /tmp $ wget http://wordpress.org/latest.zip $ …

Read More

Introduction to wordpress database: wp_posts

Well, this is the most important table in wordpress structure. It stores all the posts, and some post related data. The structure is mentioned below: Field Type Null Key Default Extra ID bigint(20) unsigned PRI & IND Pt4 auto_increment post_author bigint(20) unsigned 0 FK->wp_users.ID post_date datetime IND Pt3 0000-00-00 00:00:00 post_date_gmt datetime 0000-00-00 00:00:00 post_content …

Read More

Introduction to webhooks for wordpress.com

Introduction to webhooks for wordpress.com Webhooks lets you easily develop push notifications. This push notification is simply a HTTP POST, that is triggered by some action. This is a feature aimed for developers who want to get data from actions (like when a new comment is submitted) that occur on a blog. Only admin level …

Read More

New Theme on wordpress.com: Notepad

New Theme on wordpress.com: Notepad With Notepad you have the option of displaying expertly designed icons that link to your profile on Twitter, Facebook or Flickr. Simply add the appropriate URL in Appearance > Theme Options. There’s even an optional RSS feed icon that fits in perfectly. The Notepad theme is available in your WordPress.com …

Read More

Using gravatar for the post author in wordpress posts

Using gravatar for the post author in wordpress posts: We have many times used to display post author’s details in each post, like author name, link to authors template. But what about displaying your gravatar? Cool, right ? Well, its very easy. In your theme’s template, use this code: <?php echo get_avatar( get_the_author_email(), ’80′ ); …

Read More

Introduction to WordPress Database: wp_links

In the structure of wordpress database, this is the LEAST used table as we rarely manage links, in fact categories links. This table provides ability to manage links, category wise, and then we can display them a widget, export or import them in an OPML format etc. The database structure is as follows: Table: wp_links …

Read More

Introduction to WordPress Database: wp_terms

Introduction to WordPress Database:  wp_terms To categorize and manage posts and other contents, wordpress uses various taxonomies like categories, tags and link categories. These taxonomies are saved in wp_terms table. The type of the taxonomy (weather it is category or tag) is saved in wp_ term_taxonomy. The table structure is as follows: Field Type Null …

Read More

WordPress 3.0 Beta version released!!

WordPress 3.0 Beta version released!! WordPress 3.0 beta version has been released for testers. They said, they are still finishing some stuffs, but developers and testers can download and test it. Some important changes are: 1) Custom menus added. 2) The default theme changed. Now, instead of two themes(default and classing), there is only one …

Read More
Page 1 of 512345»