Your cart is currently empty!
Category: Blog Diary
How to duplicate posts and pages in WordPress
You can use a plugin called Duplicate Page.
I discovered a free WordPress multilingual plugin.
It’s called Bogo. It’s the same author who created that Contact Form 7 plugin.
How to move categories in WordPress without belonging to multiple categories.
When you use Quick Edit in WordPress to move a post from Category 1 to Category 2, the post ends up belonging to both Category 1 and Category 2. To avoid this issue, it’s a good idea to use a plugin called Bulk Move.
How to include custom posts in post RSS in WordPress
Put the following code in functions.php. For example, if it is a slug for a custom post type called ‘product’ or ‘wpdmpro’, enter it as follows. Replace slug with your own custom post type slug.
/* Include custom posts in post RSS */ add_filter( 'pre_get_posts', 'my_custom_posts_rss' ); function my_custom_posts_rss( $query ) { if ( is_feed() ) $query->set( 'post_type', array( 'post', 'product', 'wpdmpro' ) ); return $query; }
How to regenerate featured images for existing articles in WordPress
First, delete the featured images using Quick Featured Images.
Next, regenerate the featured images using the XO Featured Image Tools.
How to bulk delete unused tags in WordPress
You can use the Mass delete unused tags plugin.
[Multilingual site] WPML plugin VS Create a site with two domains
When deciding between using the WPML plugin or creating a site with two domains for a multilingual WordPress website, it’s essential to weigh the pros and cons of each approach. Here’s a detailed comparison to help you make an informed decision:
(more…)The future of WordPress is block-based themes
The future of WordPress is indeed leaning heavily towards block-based themes, driven by the evolution of the Gutenberg editor and the broader shift towards a more flexible and user-friendly content management experience. Here’s a closer look at what this means for WordPress:
(more…)How will things change with the advent of Google’s AI search, SGE?
The introduction of Google’s AI-driven Search Generative Experience (SGE) marks a significant shift in how users interact with search engines. Here are some key changes and potential impacts of SGE:
(more…)