Category Make your WordPress website with specific category and show how much post per page in specific category. How to add specific category first of all open your WordPress active theme folder and paste this code where you want show specific category post. <?php // the query $the_query = new WP_Query(array( ‘category_name’ => ‘ENTER_NAME’, ‘post_status’ […]
Blog
Add share button without any type of plugin or thirdparty app on wordpress, Just paste given code where you want to show share button. How to add share button on theme Open active theme’s folder then open header.php file and paste given code between <head> ….. </head>. <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css”> Then paste share button where […]
We understand the difference between passport and visa by definition. Passport This is a kind of identity card which tells which country you are a citizen of. Visa In order to enter a country for a specified period of time, it is necessary to have a visa. For example, if I am from India and […]
पासपोर्ट और वीजा में अंतर हम परिभाषा के अनुसार समझते है। पासपोर्ट (passport) यह एक तरह का पहचान पत्र होता है जो यह बताता है की आप किस देश के नागरिक हो। वीजा (visa) किसी देश में निर्धारित समय के लिए प्रवेश लेने के लिए वीजा का होना जरूरी है।जैसे- मैं भारत का हूं और […]
How To Show Show Latest Post or Item without any plugin. so follow this easy steps and show latest item. code- <?php // Define our WP Query Parameters $the_query = new WP_Query( ‘posts_per_page=5’ ); ?> <?php // Start our WP Query while ($the_query -> have_posts()) : $the_query -> the_post(); // Display the Post Title with […]

Random Post Show random content post and increase visiting time of your visitors. How to show Random post follow simple steps and add code in your website’s theme. single.php paste this code anywhere you want to show random post. <?php $args = ‘orderby=rand&numberposts=6’; $posts = get_posts($args); foreach($posts as $post) { ?> <div class=”singlerandomepost”><a href=”<?php the_permalink(); […]
Language Translator Google’s and Bing’s both are free service instantly translates words, phrases, and web pages between English and other languages. By Google – Click Here By Bing – Click Here
What is the full form of DHT The full name of DHT is Dihydrotestosterone, which is a cause of hair loss. Does eating reduce DHT? Eating tomatoes, mango carrots, watermelon can prevent DTH from increasing. Eating almonds, walnuts, peanuts or pumpkin seeds can block DTH. DHT increases with what you eat By eating more things […]
WordPress It is a free open-source content management system. WordPress written in PHP and paired with a MySQL or MariaDB database. Theme Design WordPress website more beautiful and attractive with Custom theme. You will customize custom theme with these files. so let’s learn how to make website theme first of all go to your cpanel […]

Protect your facebook account using two step verification. If you will turn on two step verification then you login with mobile OTP when you trying to login. How To Turn on two step verification in facebook and make more security or mobile OTP verification functionality. follow these steps and on two step verification in fb […]