Archive | Wordpress RSS feed for this section

[How to] Using wp_redirect() without getting errors

TweetRecently I worked on a wordpress plugin where I want to redirect users to the listing page after the data gets successfully saved into the database table. To redirect users to a different page generally we use wp_redirect() function available in wordpress. I tried using the same wp_redirect() function using following code. PLAIN TEXT PHP: [...]

Read full story · Comments { 1 }

[WordPress Plugin] iPad Swipe

TweetMost WordPress themes look just fine when you view them in an iPad but what every iPad user gets very soon used is swiping across to turn pages. I thought it would be a good addition for any WordPress blog to be able to provide this functionality via a plugin and a good programming exercise [...]

Read full story · Comments { 41 }

[WordPress Plugin] Automatic Post Thumbnail

TweetPlease continue all discussions regarding this plugin in the plugin forum WordPress 2.9 introduced a new feature called Post Thumbnails (a.k.a Featured Thumbnails) allowing you to assign an image to your post. This image can then be easily shown in your blog using a simple function. Mark Jaquith has written an excellent blog post explaining [...]

Read full story · Comments are closed

[WordPress] Get your own markup for nested comments

TweetThis blog uses a modified Hemingway Reloaded theme but the theme is old and does not support nested comments and uses a customized way to display list of comments under a post instead of standard wp_list_comments(). Hence, when we decided to display nested comments, I needed to tweak comments.php in the theme for that and [...]

Read full story · Comments { 0 }