admin

Website Tutorial

Display Related Posts By Tags in WordPress

<ul id=”tags_related”> <?php global $post; $post_tags = wp_get_post_tags($post->ID); if ($post_tags) { foreach ($post_tags as $tag) { $tag_list[] .= $tag->term_id; } $post_tag = $tag_list[ mt_rand(0, count($tag_list) – 1) ]; $args = array( ‘tag__in’ => array($post_tag), ‘category__not_in’ => array(NULL), ‘post__not_in’ => array($post->ID),...
Website Tutorial

CodePen Home Remove dots from Ul and li

In some cases, we are required to remove the bullets of unordered and ordered lists. The removal of the list bullets is not a complex task using CSS. It can be easily done by setting the CSS list-style or list-style-type property to none. The list-style-type CSS property is...
Website Tutorial

How to Organise WordPress Files in Media Library

Install and Activate Media Library Folders Firstly, we will install and activate the plugin on your WordPress Website. Follow the steps from here. Step 1: Go to your WordPress website Dashboard and log in using your Username and Password. Step 2: Then,...
Search Engine Optimization

What Is AI Content Optimization?

AI content optimization is the process of using artificial intelligence to improve digital content to enhance its visibility, readability, and engagement. This technique employs machine learning algorithms and natural language processing to analyze and refine content for better performance in...
Website Tutorial

WordPress-Why You Should Stop Using “Uncategorized”

The two biggest reasons you should avoid using “Uncategorized” are fairly straightforward: It makes you seem careless, resulting in your blog appearing unprofessional It doesn’t help your readers find the content they’re looking for When you have blog posts listed...