Your cart is currently empty!
Category: Plugins
How to set up Two-Factor Authentication (2FA) in WordPress
You can use the All In One WP Security plugin.
How to import Instagram articles to WordPress
I run another site and use a paid plugin called Intagrate Pro. There is also a free Lite version, so you should try using Lite first.
[Contact Form 7] How to prevent spam from being sent from the contact form
- The first is the introduction of “Google Recaptcha v3”.
- The second is “installation of checkboxes”.
How to create a contact form in WordPress
You can use the Contact Form 7 plugin.
How to stop RSS Feed in WordPress
Put the following code in functions.php.
function wpb_disable_feed() { wp_die( __('No feed available,please visit our <a href="'. get_bloginfo('url') .'">homepage</a>!') ); } add_action('do_feed', 'wpb_disable_feed', 1); add_action('do_feed_rdf', 'wpb_disable_feed', 1); add_action('do_feed_rss', 'wpb_disable_feed', 1); add_action('do_feed_rss2', 'wpb_disable_feed', 1); add_action('do_feed_atom', 'wpb_disable_feed', 1); add_action('do_feed_rss2_comments', 'wpb_disable_feed', 1); add_action('do_feed_atom_comments', 'wpb_disable_feed', 1);
How to stop scaling images in WordPress
To stop the function that automatically scales images with a resolution of 2560px or higher when uploading images in WordPress, add the following to functions.php.
//Disable Scaling Of Image
add_filter( 'big_image_size_threshold', '__return_false' );How to change the WordPress login screen
Put the following in functions.php. Replace “Your Logo Here” and “Your URL Here” with your own.
function custom_login_logo() { echo '<style type="text/css"> .login h1 a { background-image: url(https://sitecreation.genxnotes.com/wp-content/uploads/2023/04/avatar.png) ; // Your Logo Here background-position: center center; background-size: contain; width: 100%; } </style>'; } add_action('login_head', 'custom_login_logo'); function login_url(){ return "https://sitecreation.genxnotes.com"; // Your URL Here } add_filter('login_headerurl', 'login_url');
How to automate tagging with WordPress
You can use the TaxoPress plugin.
I don’t know how to modify functions.php. What should I do?
I recommend trying out the Wp Code plugin. You will be able to modify functions.php directly from the WordPress admin screen.
Plugins you should install if you use Japanese with WordPress
If you are dealing with Japanese, you should install the WP Multibyte Patch plugin.