Create a page displaying your random blog posts in your WordPress site.
Continue reading How To Create A Page For Displaying Random Blog Posts In Your WordPress Site ?
Create a page displaying your random blog posts in your WordPress site.
Continue reading How To Create A Page For Displaying Random Blog Posts In Your WordPress Site ?
If you like using custom CSS in your WordPress single posts using custom fields then you can easily do that reading this tutorial.
Continue reading How To Embed Custom CSS In Your Single Posts With Custom Fields ?
Today Automattic launched its own Liveblog plugin for WordPress. It allows quick and simple blogging for following fast-paced events.
You can easily brand your blog more by using your own default avatar for comments. To say good bye to Mystery Man, follow these steps:
Continue reading How To Change The Default Gravatar For Comments In WordPress ?
Make your BuddyPress invitation feature more powerful and engaging by adding ability to invite members to your site by email, first of all install and active Invite Anyone plugin and then follow these steps:
Continue reading How To Allow Your BuddyPress Site Members To Invite Their Friends To Register ?
By default English is the localized language of your WordPress site that can be changed to your native language:
Open your wp-config.php file and add these lines:
define(‘WPLANG’, ”);
define(‘LANGDIR’, ”);
Important: Language translation file (.mo) must be placed in the default location – wp-content/languages (first) and then wp-includes/languages(second). As in the above function, you can define your own language directory. Learn more about WordPress in Your Language
You might have noticed common WordPress error sometimes while activating a new plugin or some other task:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx
This error shows up when you exceed your default Memory Limit. For fixing it up wp-config.php file and add the following line:
define(‘WP_MEMORY_LIMIT’, ’64M’);
By default WordPress auto saves post on every 60 seconds, but you can easily modify this time according to your like. Open your site’s wp-config.php file and add the following line just above the Happy Blogging line:
define(‘AUTOSAVE_INTERVAL’, 120); // in seconds
In the above line I have given time of 120 seconds, you may change that as per your requirement.
You can also modify post revisions by limiting the number of revisions per post:
define(‘WP_POST_REVISIONS’, 5);
And for disabling post revision, set it to false as shown below:
define(‘WP_POST_REVISIONS’, false);
If you are a regular user of Google Forms then email them to yourself or your users and use an email label for easy access.
Continue reading Store Google Forms In Gmail And Easily Access Them From Your Inbox
If your host has restrictive permissions for all files, don’t worry you can very easily override file permissions in WordPress.
Continue reading How To Override File Permissions In WordPress ?
Only for developers WordPress has debugging feature which allows them to find errors, deprecated functions. By default this debugging feature is set to false but during development mode programmers may have it enabled.
Continue reading WordPress Debugging Feature For Developers
After you save you any draft in WordPress, the page reloads and leaves you at the top of your post and then you scroll down to begin from where you left. This becomes irritating while writing long posts. So if you like you can easily recover old scroll position in your WordPress Editor after saving your draft. Works both in either HTML or visual editor.
Continue reading How To Preserve Editor Scroll Position In WordPress ?
Wp Facebook Grabber plugin provide you a way to take public content from Facebook and insert it in your WordPress posts and pages.
Continue reading How To Insert Facebook Public Content In Your WordPress Site ?
Disable Comments, another WordPress plugin allows administrators to globally disable comments on their site. Comments can be disabled according to post type.
Remember:
Use this plugin if you don’t want comments at all on your site or on certain post types. After activating it, plugin settings can be accessed from the ‘Settings’ menu in the administration area.
Related Plugin:
Read this article to Disable Comments By Default On New WordPress Pages And Custom Post Types.
You can easily disable comments by default on new pages and custom post types, with the ability to individually set them on a page or post basis.
By default, WordPress provides you two options:
WordPress doesn’t provides you any specific setting that allows comments and trackbacks to be active by default for posts, while disabling them on pages or any other post type but using No Page Comment plugin you can have these options also. Simply install, activate it then visit its options from Dashboard->Settings->No Page Comment.
You can very easily disable comments on WordPress media attachments. Open your theme’s function.php file and add the following hack:
function filter_media_comment_status( $open, $post_id ) {
$post = get_post( $post_id );
if( $post->post_type == ‘attachment’ ) {
return false;
}
return $open;
}
add_filter( ‘comments_open’, ‘filter_media_comment_status’, 10 , 2 );
Convert your WordPress site in to a mobile friendly site in minutes. Make your smartphone visitors automatically get redirected (like Google & Facebook) to your site’s mobile version. DudaMobile WordPress plugin makes it easy, fast and free.
Continue reading How To Create A Mobile Friendly WordPress Site In Minutes ?
Suburbia is a free premium WordPress theme by WPShower.COM for creating WordPress magazine style websites. Its very clean, flexible having very modest and minimalistic style.
Continue reading Create A Beautiful Magazine Style WordPress Site Using Suburbia
Here is a function that extends oEmbedding in WordPress. All you need to do is copy-paste the following code in your theme’s function file.
Continue reading WordPress Hack To oEmbed SlideShare Presentations
There are many WordPress themes that don’t show numbers on comments but we use them because they are better on other sides. So here I am discussing how to easily add numbers in your WordPress theme’s comments section.
Continue reading How To Add Comment Numbers In Your WordPress Theme ?
oEmbed was designed to avoid making copy and paste HTML from the site hosting the media. It supports videos, images, text, and more.
Continue reading How To Enable oEmbed In Your WordPress Site ?