You can use the My Private Site plugin.
Tech Tag: WordPress
-
How to bulk delete manual excerpts of posts in WordPress
Put the following code at the bottom of the theme’s functions.php, save and update, reload the site, delete the code from functions.php, save again and update. Then, you don’t need to go to MyPHPAdmin.
$wpdb->query( "UPDATE wp_posts SET post_excerpt='' " );
in WordPress -
How to set an featured image for an article that does not have an featured image
I installed Easy Add Thumbnail so that the first image appearing in a post becomes the featured image. After that, I installed a plugin called Quick Featured Images. This plugin allows you to set featured images in bulk for existing posts and also set them for future posts. With this plugin, you can assign specific featured images based on categories or tags, so I set a featured image for all categories and also for future posts.
With these two plugins, 96% of the posts now have featured images, but 4% still do not. The issue is with the posts where Easy Add Thumbnail didn’t pick up the image as a featured image, even though it existed within the post. For these remaining posts, I installed a plugin called Auto Featured Image (Auto Post Thumbnail) to generate featured images and avoid leaving any “No Images” placeholders. However, the featured images created by Auto Featured Image seem somewhat rough or odd, so I plan to fix them in the future.
in WordPress -
How to attract traffic to a WordPress site without relying on Google
Boost WordPress site traffic without Google by:
- Social Media: Share content on platforms like Facebook, Instagram, and LinkedIn; create shareable visuals; engage in groups.
- Content Marketing: Guest blog, collaborate with influencers, and send email newsletters.
- Forums & Bookmarking: Share insights on Reddit, Quora, and niche forums with links to your site.
- Video Marketing: Create YouTube tutorials, live streams, or webinars linked to your site.
- Influencer Marketing: Partner with relevant influencers for promotions or sponsored content.
- Paid Ads: Run targeted social media and native ads.
- Community Building: Build online groups and host webinars to foster engagement.
- Other Search Engines: Optimize for Bing and Yahoo.
Diversify your strategies to grow visibility and traffic effectively.
in WordPress -
How to convert existing PNG files to JPG files in WordPress
It is best to use the PNG to JPG plugin.
in WordPress -
How to change post type in WordPress?
It is better to use the Post Type Switcher plugin.
in WordPress -
How to delete author archives in WordPress
Install the Rankmath plugin. You can do this by going to “Title and Meta” then “Author” and disabling it. However, please note that if you disable this, you will not be able to use the ActivityPub plugin to connect WordPress to Fediverse.
in WordPress -
How to fix pagination to be displayed vertically when using WooCommerce with cocoon theme
When the pagination is displayed vertically, buttons are difficult to press and the design is poor, so I looked into ways to set it horizontally. You can display it horizontally by going to Customize WordPress, going to Additional CSS, and inserting the code below.
.woocommerce-pagination .page-numbers {
height: auto;
width: auto;
}