Blog Archives

Sanitize And Escape Text Input In WordPress

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

Posted in WordPress Tagged with: ,

STOP! 6 Key Questions To Ask Before You Outsource

One of the most important strategic tools that new business owners use is that of outsourcing. This concept has allowed businesses to focus on their core strengths and at the same time use other sources to supplement their other requirements.

Posted in Guest Posts Tagged with: ,

WordPress Theme For Matrimony Microsite

I recently developed a WordPress theme for a matrimony microsite. Client’s objective is to focus on mobile users and use the website to build a community around their brand. Development Overview The theme was designed by Jishnu of Artistory Media

Posted in WordPress Lab Tagged with: , , ,

7 Things Every Programmer Must Know

Programming for the last two decades has been indispensable to the success of every industry. Programmers contribute a lot in terms of success and are therefore always in high demand. It would not be surprising if you were willing to

Posted in Guest Posts Tagged with: ,

Make A Div Stick To Bottom Of Parent Div

Here is the HTML Markup <div class="parent">      <div class="child">     <?php echo "Hello"; ?>   </div>    </div> And the CSS .parent {   position: relative; }    .child {   position: absolute;   bottom: 0px; }

Posted in WordPress Tagged with: ,