It is quite possible that you did experience a requirement of putting in textures in your website (or web work). Well, thanks to the world of web, there are huge number of options available to choose
Author: The Editorial Team Page 1 of 83

For modern day websites, it is very much important to have proper communication channel onboard. While some just consider putting up their email address but other than this, it is much good if

Seeing the things like water drops brings both peace and smile on one’s face. This is why thinking the same, in this article; I am rounding up some of the best of water droplets wallpapers for you.
Purple Drops

While as a graphic designer, the first love will be the use of lots of colors but those colors will be seen making it places in the form of images and that also not in one particular type but in one-to-many

WordPress is the most popular way to build all kinds of websites, without having any coding skills or previous experience. Gorgeous websites created with WordPress can easily be found on the internet,

Reduce spam by using .htaccess
Adding the following shortcode will let you reduce spam on your WordPress blog by using .htaccess. Simply paste the following lines into your .htaccess file but also make a note that you do make a backup of your .htaccess file before editing it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_METHOD} POST RewriteCond %{REQUEST_URI} .wp-comments-post\.php* RewriteCond %{HTTP_REFERER} !.*yourdomainname.* [OR] RewriteCond %{HTTP_USER_AGENT} ^$ RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L] </IfModule> |
Source: AllGuru.net
Display a thumbnail of any website
Simply paste the code below into your functions.php file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
function gk_snap($atts, $content = null) { extract(shortcode_atts(array( "snap" => 'http://s.wordpress.com/mshots/v1/', "url" => 'http://www.geekeries.fr', "alt" => 'Mon image', "w" => '400', // largeur "h" => '300' // hauteur ), $atts)); $img = '<img src="' . $snap . '' . urlencode($url) . '?w=' . $w . '&h=' . $h . '" alt="' . $alt . '"/>'; return $img; } add_shortcode("snap", "gk_snap");unction gk_snap($atts, $content = null) { extract(shortcode_atts(array( "snap" => 'http://s.wordpress.com/mshots/v1/', "url" => 'http://www.geekeries.fr', "alt" => 'Mon image', "w" => '400', // largeur "h" => '300' // hauteur ), $atts)); $img = '<img src="' . $snap . '' . urlencode($url) . '?w=' . $w . '&h=' . $h . '" alt="' . $alt . '"/>'; return $img; } add_shortcode("snap", "gk_snap"); |
Once done, you can use the snap shortcode:
1 |
[snap url="http://www.geekeries.fr/publicites/" alt="Ma description" w="400" h="300"] |
Source: Geekeries.fr
Easily remove weird characters from your WordPress database
The shortcode will remove the weird characters from your WordPress database. All you have to do is simply run the following SQL query on your nWordPress database via the command line client or PhpMyAdmin.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
UPDATE wp_posts SET post_content = REPLACE(post_content, '“', '“'); UPDATE wp_posts SET post_content = REPLACE(post_content, 'â€', '”'); UPDATE wp_posts SET post_content = REPLACE(post_content, '’', '’'); UPDATE wp_posts SET post_content = REPLACE(post_content, '‘', '‘'); UPDATE wp_posts SET post_content = REPLACE(post_content, '—', '–'); UPDATE wp_posts SET post_content = REPLACE(post_content, '–', '—'); UPDATE wp_posts SET post_content = REPLACE(post_content, '•', '-'); UPDATE wp_posts SET post_content = REPLACE(post_content, '…', '…'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '“', '“'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'â€', '”'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '’', '’'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '‘', '‘'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '—', '–'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '–', '—'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '•', '-'); UPDATE wp_comments SET comment_content = REPLACE(comment_content, '…', '…'); |
Source: Jeff Starr
How to change WordPress editor font
Adding the following shortcode to your functions.php file will let you change the default WordPress editor font.
1 2 3 4 5 6 7 8 9 |
add_action( 'admin_head-post.php', 'devpress_fix_html_editor_font' ); add_action( 'admin_head-post-new.php', 'devpress_fix_html_editor_font' ); function devpress_fix_html_editor_font() { ?> <style type="text/css">#editorcontainer #content, #wp_mce_fullscreen { font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif; }</style> <?php } |
Source: DevPress
Removing the “read more” jump
Adding the shortcode into your functions.php file will remove the “read more” link from your blog which will automatically takes you to the article page.
1 2 3 4 5 6 7 |
function wdc_no_more_jumping($post) { return '<a href="'.get_permalink($post->ID).'" class="read-more">'.'Continue Reading'.'</a>'; } add_filter('excerpt_more', 'wdc_no_more_jumping'); |
Source: Alex Denning
=&5=&


YouTube is a fantastic video website, use to watch and share videos on web. But, it will be better, if having YouTube videos embed on your WordPress blog. While there are number of plugins available which makes a fit for you to use YouTube plugin for your WordPress blog but the best bet is the one from which you can choose from. In this article, I have showcased the best WordPress YouTube plugins available which I believe will be the right fit for your blog.


While I talked about different membership plugins (both free and premium) in the past also, but thanks to our readers’ demand, here in this article, we have rounded up the best WordPress profile plugins for you. Hope you like the collection.
Advanced Author Bio
The plugin automatically adds a short author bio box along with gravatar and social profile links in every single post of your blog.
User