https://millionclues.com/wordpress-tips/adding-safari-only-css/
https://millionclues.com/wordpress-tips/adding-safari-only-css/

https://millionclues.com/wordpress-tips/adding-safari-only-css/

By OutsourcedContent — on November 13, 2017 For general sanitization of text input fields and text areas for plugin options and such, use: sanitize_text_field( string $string ) For escaping in general for text input fields, use: esc_attr( string $string ) @refer https://wordpress.stackexchange.com/a/66323/90061

Comment spammers are getting smarter and using latest techniques to fool anti-spam methods. It really does not matter which anti-spam plugins you use on WordPress, you must have noticed that these spam comments are bypassing your full proof system. Every now and then, you will receive bunch of spam comments on your website. If you…

By OutsourcedContent — on December 10, 2017 Here is the HTML Markup <h4 class=”single-company-tab-wrapper hide-if-no-js”> <a class=”single-company-tabs” href=”#info”>Info</a> <a class=”single-company-tabs” href=”#contact”>Contact</a> </h4> <div id=”info” class=”tab-content”> <p>Content of info tab</p> </div> <div id=”contact” class=”tab-content”> <p>Content of contact tab</p> </div> And here is the jQuery jQuery( document ).ready( function($){ $(‘.tab-content’).hide(); // Hide all tabs first …

By default the remember me checkbox on WordPress login page is always unchecked and you have to select it every time you visit login page of your website. To be honest, it’s really annoying and frustrating. Well, at least for me. Although, it’s a small thing, but it makes the login form more usable and…

When using the WordPress post editor you can choose if you want to write your posts in either the visual text editor or the HTML text editor. By default, Visual Editor is the default post editor in WordPress. If you are comfortable with writing posts in visual editor and want to keep it as your…

In WordPress, there is a special HTML comment tag called more. <!–more–> This tag allows you to put a stopping point in the content of the post, this is then searched by WordPress when you display a list of posts. If WordPress finds this more comment in your content then it will only display the…
