genius 404
Automatically redirect to the content the user was most likely after, or show suggestions, instead of showing an unhelpful 404 error.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 3927 days ago • 1 reviews
Is genius 404 abandoned?
Possibly abandoned (last update 3927 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
Save your visitors from unhelpful 404 errors!
Instead of quickly giving up when a visitor reaches content that doesn’t exist, make an effort to guess what they were
after in the first place. This plugin will perform a search of your posts, pages, tags and categories, using keywords from the requested
URL. If there’s a match, redirect to that content instead of showing the error. If there’s more than one match, the
404 template can use some template tags to provide a list of suggestions to the visitor.
Template tags
genius404_has_suggestions
Returns true if there are some suggestions, false otherwise
genius404_get_suggestions
Retrieve an array of post objects for rendering manually.
genius404_suggestions
Draw a list of suggested posts.
Pass the parameter “list” to render suggestions as a list.
genius404_loop
Query posts for use in a Loop. Eg:
Note that the loop will not display pages correctly, as it is not built to support them. It is recommended that if you use
a loop like that above, do not enable searching of pages.
genius404_get_search_terms
Retrieve an array of search terms used to populate the suggestions list, for use with contextual highlighting, etc.
Installation
- Unzip the package, and upload
genius404to the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Place
<?php genius404_suggestions() ?>in your 404 template to list suggested posts, or see ‘Template tags’ for more information.