WordPress 3.2 Beta 2
WordPress 3.2 Beta 2

WordPress 3.2 Beta 2

Did you know that WordPress 3.2 Beta 2 has available to download? there are many enhancement from previous releases WordPress 3.2 Beta 1. Here is the list on an update on WordPress 3.2 Beta 2

  • Google Chrome Frame is now supported in the admin, if you have it installed. This is especially useful for IE 6 users (remember, IE 6 is otherwise deprecated for the admin).
  • The admin is less ugly in IE 7.
  • The blue admin color scheme has caught up to the grey one, and is ready for testing.
  • We are now bundling jQuery 1.6.1. You should test any JS that uses jQuery. WordPress JavaScript guru Andrew Ozz has a post with more info.

Read more

WordPress 3.1.3 Update

Recently WordPress has been updated again. Now WordPress 3.1.3 available. You can download WordPress 3.1.3 on this page.

WordPress 3.1.3 Update

WordPress 3.1.3 Update

On WordPress 3.1.3 there are many enhancement and security fix.

Here is what’s you got on WordPress 3.1.3

  • Various security hardening by Alexander Concha.
  • Taxonomy query hardening by John Lamansky.
  • Prevent sniffing out user names of non-authors by using canonical redirects. Props Verónica Valeros.
  • Media security fixes by Richard Lundeen of Microsoft, Jesse Ou of Microsoft, and Microsoft Vulnerability Research.
  • Improves file upload security on hosts with dangerous security settings.
  • Cleans up old WordPress import files if the import does not finish.
  • Introduce “clickjacking” protection in modern browsers on admin and login pages.

Read more

te_theme-options

I think this it is really incredible when you follow the WordPress version. At the end of April 2011 I’ve just write an article about WordPress 3.1.2 has released to fixed major security problems that has been hacked. Now Automattic prepare for the next generation of WordPress.

I see some difference from the previous version in the admin dashboard and default themes. They called Twenty Eleven, but this themes was not released. If you’re curious with this you can found the development in here. Here it is I give you the screenshot of Twenty Eleven :

Some people said it looks it is like a Thesis themes and some people it is base on Duster (Automattic WordPress themes), “wow” that is  amazing breakthrough. I can’t helped for waiting this WordPress 3.2 final released. If you like to try this beta 1 you can download it right here.

You may already be familiar with membership WordPress plugins or a similar plugin. Usually people has something to shared with registered member suppose they give more information or features for some members. This trick can be But this we can do yourself without using the plugin. As explained by justintadlock, we can create own functions in functions.php file. The way is easy, open the functions.php file and then copy and paste the following function into the functions.php file.

function member_check_shortcode( $atts, $content = null ) {
	 if ( ( !is_user_logged_in() && !is_null( $content ) ) || is_feed() )
		return $content;
	return '';
}
add_shortcode( 'member', 'member_check_shortcode' );

How to use it is like this:

[visitor]

Some content for the people just browsing your site.

[/visitor]

You can use this function wherever you are in the blog. You can limit it to a few sentences or a whole article.

Move Admin Bar WordPress to the Bottom - Chocolate Forest

WordPress Admin Bar is new features introduced in WordPress 3.1. This feature is small bar on the top that we use to quick access to admin features such as Add New Post and Page, Edit Profile, Edit Comment, Check Stats, Edit Widget and many more.

Move Admin Bar WordPress to the Bottom - Chocolate Forest

Move Admin Bar WordPress to the Bottom - Chocolate Forest

WPEngineer show some tips how to move the admin bar from the top to bottom of the screen. You need to copy and paste this code and place it on your functions.php Read more

Page 2 of 3412345102030...Last »