You can use Yet Another Related Posts Plugin (YARPP).
Archives: Tech
The Three Reasons for Monetizing Articles
-
Should I use or avoid free WordPress plugins?
When considering whether to use or avoid free WordPress plugins, it’s essential to weigh the pros and cons. Here’s a detailed look at both sides to help you make an informed decision.
(more…)in WordPress -
How do I add code to the header of a WordPress block-based theme?
The easiest way is to use WPCode Lite.
in WordPress -
If you use the same WordPress theme as everyone else, there will be no originality. What should I do?
Using a popular WordPress theme can indeed lead to a lack of originality, but there are several strategies you can employ to make your site stand out. Here’s how to add a unique touch to your WordPress theme:
(more…)in WordPress -
How to host fonts manually in WordPress?
Use block-based themes. From
Edit Site, click the
Style Icon in the top right corner, and go toTypography. You can use the font by clicking the
Manage Fonts icon and uploading the font file or installing the font (via Google).in WordPress -
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');
in WordPress -
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);
in WordPress -
In My Opinion, Friends Plugin is dead, so I removed it.
I just can’t get this thing to work. My site gets messed up hard. Whenever I go to the followers page, it has a conflict with my SEO plugin, which I rather not disable. I get like over 22 lines of errors like this. It’s so long that I can’t paste the whole thing. It’s so broken.
Warning: Attempt to read property “ID” on null in path on line 123
Warning: Attempt to read property “post_author” on null in path on line 456
Warning: Attempt to read property “post_date” on null in path on line 789
Warning: Attempt to read property “post_parent” on null in path on line 012
Also, very few people have this plugin enabled, and how am I supposed to find friends from WordPress?
ActivityPub is great, but it’s just not the right plugin for me.
in WordPress