By default the WordPress the_excerpt() tag displays the first 55 words. To assign a custom length just add the following code to your theme’s functions.php file. The return value in the custom_length function will change the word length of the_excerpt() tag. function custom_length( $length ) { return 30; } add_filter( 'excerpt_length', 'custom_length', 999 ); Tested […]
Author: contrib
Redirect WordPress login logo link
If you want your wordpress login logo to redirect to your site root add the following code to your theme’s functions.php file add_filter('login_headerurl', 'my_login_url_local'); function my_login_url_local() { return get_bloginfo('url'); } Tested with WordPress 3.3
Change WordPress login logo
If you want to change the default wordpress logo on the login page, you can add the following code to your themes functions.php file. Make sure /images/login-logo.png is present in your theme folder. function custom_login_logo() { echo '<style type="text/css">h1 a { background-image:url('.get_bloginfo('template_url').'/images/login-logo.png) !important; }</style>'; } add_action('login_head', 'custom_login_logo'); tested with wordpress version 3.3
WordPress post install tips
Some useful tips to remove wp generator, meta generator etc… http://www.labnol.org/internet/blogging/wordpress-tips-post-installation-hacks/3931/
Bulk Rename Utility
Free file renamer Has a no-install option WEBSITE
Vlc Player
Vlc media Player WEBSITE