•  
Archive for the ‘Articles’ Category

Automattic launches talkpress.com

By Austin On April 27, 2009 2 Comments

I was just working on re-launching my forum in preparation of the new theme I am going to release sometime this week. And while in the bbPress admin section I noticed some spammers had registered, a little over two hundred fifty to be exact.

While I was looking at the bbPress site, I came across this article: TalkPress and bbPress. It talked about a new VIP service that Automattic is working on for forum integrations, like WordPress.com.

So what might this mean? Well I think after many verbal attacks to Matt Mullenweg

Click here to continue reading


Looking for the right plugin?

By Austin On February 19, 2009 2 Comments

Well, I hope many of you have been using the WordPress plugin directory. It’s a grand location where you can find endless plugin for your WordPress blog.

But sometimes you don’t exactly get what you search for, but according to mdawaffe on WordPress, they have implemented a new open source MySQL text search engine. Well go on, test it out. Click here to continue reading



The launch of WordPress.tv

By Austin On January 17, 2009 2 Comments

Hey, in case you are unaware, WordPress has launched a new site called WordPress.tv. Check out the full post at the WordPress.org blog. Or visit WordPress.tv

…WordPress.tv is also now the place to find all that awesome WordCamp footage that was floating around the web without a home. See the presentations you missed and get a peek at behind-the-scenes action. We call it WordCampTV.

You’ll also find slideshows of presentations made by Automattic employees and other WordPress gurus, plus interviews I’ve done with the media and

Click here to continue reading


Echo Images inside a Post into the Loop

By Austin On December 5, 2008 7 Comments

Here is a useful trick. Want to call or echo an image into your blog post with our using the custom fields? Well this could be tricky, but I know of a way.

All you have to do is print these lines of code into your
index.php or home.php inside the loop:

<?php $id =$post->ID; $the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id"); $home = get_option('home'); $pattern = '!<img.*?src="'.$home.'(.*?)"!'; preg_match_all($pattern, $the_content, $matches); $image_src = $matches['1'][0]; ?>

then after write:

<?php if($image_src != '') { ?> <a href="<?php echo the_permalink() ?>" rel="bookmark" title="Link to <?php the_title(); ?>"><?php the_title(); ?></a><br /> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><img src="<?php echo $image_src; ?>"Click here to continue reading


Post this to Twitter

By Austin On December 5, 2008 No Comments

Hey, do you have a list a social bookmark links? Does it have a Twitter link?
Well here is a way you can link a post to your Twitter.

<a href="http://twitter.com/home?status=Blog Post: <?php the_permalink(); ?>" class="external" title="Click to send this post to Twitter!">Twitter</a>

Pretty useful I might say :) Click here to continue reading



WordPress 2.7 Release Candidate 1

By Austin On December 1, 2008 No Comments

With the release of RC1, we’re in the final leg of development before the release of 2.7. 280 commits since beta 3 have polished the new admin UI (including new menu icons created by the winners of our icon design contest) and fixed all known blocker bugs. We think RC1 is ready for everyone to try out. Please download RC1 and help us make the final release the best it can be. As always, back up your blog before upgrading.

Get RC1. Click here to continue reading



Bug Fix OIOPulisher 2.07

By Austin On November 30, 2008 No Comments

As I have mentioned before, I am using the OIO Publisher Plugin, which you can see/use/purchase by clicking on the advertisement ad, or my advert page.

Anyway, it suddenly was not working and would say “plugin off line” on the purchase page, when it most certainly was not.

After contacting Simon over at OIO. I got a quick response to view this forum thread.

Indeed, this fix worked!

Here is what you need to do.

OPEN

include/config.php

FIND

if($oiopub_set->wp_load == 1) {
include_once($oiopub_set->wp_config);
}

REPLACE WITH

if($oiopub_set->wp_load == 1) {
$oio_cwd = getcwd();
chdir(str_replace("/wp-config.php",

Click here to continue reading


WordPress 2.6.5

By Austin On November 25, 2008 1 Comment

WordPress 2.6.5 is immediately available and fixes one security problem and three bugs. We recommend everyone upgrade to this release.

The security issue is an XSS exploit discovered by Jeremias Reith that fortunately only affects IP-based virtual servers running on Apache 2.x. If you are interested only in the security fix, copy wp-includes/feed.php and wp-includes/version.php from the 2.6.5 release package.

2.6.5 contains three other small fixes in addition to the XSS fix. The first prevents accidentally saving post meta information to a revision. The second prevents XML-RPC from fetching incorrect post types. The third adds some

Click here to continue reading


The Results of Project Icon

By Austin On November 17, 2008 No Comments

The community has voted, and the votes have been tallied. The winner of Project Icon, with 35% of the votes, is Entry ID “BD,” otherwise known as Ben Dunkle. Congratulations, Ben! The runner-up was VS, otherwise known as Verena Segert, so we’ll be attaching that set to the alternate color palette that is selectable from the profile screen. As we prepare for RC1, Ben and Verena will be revising a couple of their icons so that both sets will use the same metaphors, creating the colored “on” states,

Click here to continue reading


Simple SEO: WordPress

By Austin On November 16, 2008 1 Comment

Properly configured, WordPress can be an extremely effective way of designing, maintaining and managing your site. Not only that, but sites using WordPress tend to rank well organically within the top search engines, once properly configured. However, neglecting some critical configurations can cause pages and posts that make up your site to not even be indexed by the major search engines.

Because WordPress is open-source, thousands of developers are constantly releasing updates and plugins to enhance the functionality of the platform — many of which are free. And some of these plugins are essential to properly optimize sites for top organic

Click here to continue reading


WordPress 2.7 Beta 3

By Austin On November 15, 2008 No Comments

WordPress 2.7 Beta 3 has been released for your testing pleasure. Here are some of the changes since Beta 2 (over 160 changes in total):

  • Numerous style improvements and refinements.
  • All admin notices now go under the page title.
  • PHP Notice fixes.
  • Dashboard widget options now properly save.
  • Menu fixes.
  • New design for Quick Edit.
  • Canonical feed URL fixes.
  • Walker fixes.
  • An update for Hello Dolly.
  • Plugin installer updates.
  • Numerous font updates.
  • Updated login logo.
  • Switch position of “Save Draft” and “Preview” buttons in publish module.
  • File upload support for MS Office 2007+ file formats.
  • Media upload buttons won’t show if the user doesn’t have the upload capability.
  • Canonical redirects only do yes-www
Click here to continue reading