The basic functionality WordPress renders the theme files using the template hierarchy. Depending on the content type, it will select the file to use to render the layout for that specific content. Looking at the visual overview of the … Keep on reading
Rename the Filter Posts List Quick Link in WordPress
If you want to register a new post status in WordPress, you can do so with the function register_post_status(). But WordPress as some predefined statuses that cannot be renamed without interfering with the core functionalities i.e. the … Keep on reading
Customize allowed HTML Tags in WP Comments
The following snippets will allow you to add html tags that are not allowed by default in WordPress Core. We hook into pre_comment_on_post that runs just before a comment is saved to your database. Here's two version of snippets. The first … Keep on reading