Blog Archives

Query Anything On WordPress Anywhere

<?php $args = array(       ‘posts_per_page’   => ‘3’,       ‘post_status’   => ‘publish’,     ); $recent_posts = wp_get_recent_posts( $args ); // Loop each post foreach( $recent_posts as $recent ) {   echo get_the_title($recent[“ID”]);   echo $recent[“post_content”]; } wp_reset_query(); ?> Refer the WP_Query class reference for a

Posted in WordPress Tagged with:

Create Sarahah Style Feedback Page For WordPress In 3 Simple Steps

If you want to create an anonymous feedback page for website and let users write to you anonymously, this tutorial is for you.

Posted in Tutorials, WordPress Tagged with: , ,

Conditionally Display Fields In Contact Form 7 With Simple JavaScript

In this tutorial, learn how to conditionally display form fields using simple inline JavaScript. Add-on plugins are an overkill for most simple use cases.

Posted in Tutorials, WordPress Tagged with: , , ,

5 Must Have WordPress Plugins For Travel Bloggers (2017)

This is a guest post by Arun Thomas of ReignTours.com I am a travel blogger myself and when I started I took off on WordPress just like any other blog. I later found out that travel blogs must stand out

Posted in Guest Posts, WordPress Tagged with: , ,

Automatically Add Image Caption, Description And Alt Text From Image Title

Here is a handy code snippet that once added to your functions.php will automatically set the Image Title, Image Caption, Image Alt Text and Description the next time you upload an image into WordPress.

Posted in WordPress Tagged with: , , , ,