Browsing Category
Wordpress Tips
Ultimate WP_Query Guide with Arguments
In this article, we will discuss the Wordpress WP_query with Arguments. You can use this in the custom query when you require.
Basic WP_Query Syntax
$args = array(
// List of arguments
);
$custom_query = new WP_Query( $args );// The…
How to Make WordPress Secure
In this article, we will discuss "how to make WordPress secure". Lots of websites owner complain about WordPress security. As everybody thought, an open source script is vulnerable to security attacks. It's our responsibility to make…
Remove Category from URL – WordPress
In this article, we will discuss "Remove Category from URL WordPress". WordPress provides an easy way to manage URLs. When we create categories in WordPress then the URL contains the category keyword. It is default nature of WordPress. This…