Your cart is currently empty!
Year: 2024
How to add multiple photos at once in WordPress
It is best to use the “Gallery” block.
How to convert existing PNG files to JPG files in WordPress
It is best to use the PNG to JPG plugin.
How to convert images to webp format in WordPress
You can use the Converter For Media plugin.
How to duplicate posts and pages in WordPress
You can use a plugin called Duplicate Page.
[WordPress] How to notify by email when there is a login
It is best to use “Login Alert” in “SiteGuard WP Plugin“.
[WordPress] Why I separate posts and custom post types
The reason I started separating posts and custom post types stems from an experience I had with the WooCommerce Membership plugin in the past.
When I tried to write member-only articles using the WooCommerce Membership plugin, I discovered a significant bug. The issue was that even locked posts could be viewed via the WordPress app. I learned that this happened because the WordPress app retrieves “posts” using an API. As a result, if you write something as a regular post, it might be accessible through the WordPress app or Feedly, potentially exposing content meant to be kept secret.
With this in mind, I developed my current approach: articles that I want to announce updates for are categorized as “posts,” while those that I don’t want to announce updates for are categorized as “custom post types.” Although I’m not currently writing member-only articles, I might do so in the future. Moreover, there are times when I don’t want to announce updates for certain articles. In such cases, I use “custom post types” to publish those articles.
How to increase post title length limit in bbPress
By default, if the title is longer than 80 characters, an error will occur and you won’t be able to post, so I looked into ways to increase the length limit. Just put the following code in functions.php.
// Increase bbPress topic title length limit add_filter ('bbp_get_title_max_length','change_title') ; Function change_title ($default) { $default=120 ; Return $default ; }
How to attract traffic to a WordPress site without relying on Google
Attracting traffic to a WordPress site without relying on Google can be challenging but entirely possible by leveraging various strategies. Here are some effective methods to consider:
(more…)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 disable data export for users in BuddyPress
You can disable data export requests by putting the following code in functions.php.
add_filter( 'bp_settings_show_user_data_page', '__return_false' );