Add Buttons to WordPress wysiwyg editor

New-button-added-to-wordpress

You can add different buttons to wordpress editor by using following code. For changing the wordpress editor we need to use the quick_tags.js file. But from wordpress 3.1 version we can customize the wordpress editor by using wordpress filter. Adding … Continue reading

Send email to your Users about new wordpress posts without plugin

send-email-to-wordpress-users

For increasing traffic of your wordpress blog or website. It is always good to send email to subscribers about new post. There are many wordpress plugins available for sending email but I given small code for sending email to wordpress … Continue reading

How to hide the wordpress visual editor and HTML editor

hide-html-visual-editor-wordpress

If you want to hide the wordpress editor from admin panel then you can use the following code in functions.php file. This is achived with very simple css trick. Incoming search terms:wordpress hide visual editordisable quicktags in comment editor wordpresswordpress … Continue reading

display your posts words count in wordpress

word-count-wordpress

If you want to display the words count in your post. you should use the following code in functions.php file. If you are not wordpress developer then dont use this code in your theme files.   In single.php file put … Continue reading

Display Author information end of article in wordpress

author-information-wordpress

Many people want to read the author information after the article. This is good for seo also. You can show the author information in single page using following code. just open your single.php file and put following code after the … Continue reading

Best wordpress tips and techniques of all time

wordpress-techniques

I created the list of best of wordpress tips and techniques which are all time favorite for all wordpress developers. Robots.txt file Put valid Robots.txt file so search engine will crawl your site data. For checking robots.txt file you should … Continue reading

How to create links template page in wordpress

create-links-template-in-wordpress

Links template page concept is new in wordpress theme. From wordpress 3 version wordpress introduced the links.php template file in wordpress themes. Adding the links page to your wordpress site or blog is very good for seo.Links page is same … Continue reading

enable the comments for custom post type

enable the comments for custom post type

In wordpress we can create the custom post types. For enabling the comments for custom post type just use the following line. Following line will add the title, thumbnail, excerpt and comments functionality to your custom post type. For more … Continue reading