WordPress (category)
Executable PHP Code in WordPress Posts
Implementing the ability to insert executable PHP scripts in WordPress posts and pages, along with important security considerations.
Function for displaying posts by number of views
This article discusses a function for displaying the most viewed posts on a WordPress blog/site.
Disable notifications (pings) for your own posts
This article provides a code snippet to disable notifications (pings) for your own posts in WordPress and explains how to completely disable notifications for article...
Conditional Tags in WordPress
The article explains Conditional Tags in WordPress and lists various condition checks with their detailed explanations and usage examples.
How to start form processing using JavaScript
The article explains how to set up form processing using JavaScript under different user interactions such as selecting, clicking, or changing values.
Interlinking Posts in WordPress (Previous Posts from Category)
The article presents a WordPress function for displaying previous entries from the category of the current post, with the option to customize the output format and...
Counting Page Visits on WordPress without Plugins
A guide on counting page visits on WordPress without using plugins, with detailed explanations and a custom code snippet.
Batch moving records (posts) from one taxonomy to another (from category to tag)
The article discusses how to programmatically move multiple posts from one category to another in WordPress, using a custom function and different methods.
Search Results Highlighting Without Using Plugins
Enhancing search functionality in WordPress by implementing search results highlighting without using plugins.
Change HTML symbols (< >) to special symbols when commenting
The article explains how to replace HTML tags PRE and CODE symbols with special characters in comments and articles, and provides a code example that demonstrates the...
Cutting text and/or replacing the standard the_excerpt() function
This article discusses the trimming of text in WordPress and the replacement of the standard the_excerpt() function with a more efficient method.
Function for displaying recent comments
Explanation of how to retrieve and display the latest comments using custom functions in WordPress.
Allow special HTML tags in comments
This article explains how to add additional HTML tags to comments and allowed tags for post content in WordPress.
404 trap for non-existent files
The article talks about handling 404 errors for non-existent files in WordPress and suggests two methods for dealing with this issue: using .htaccess or in PHP.
Alternative to WP-pagenavi Plugin (Pagination for WordPress)
How to create a custom pagination function as an alternative to the wp-pagenavi plugin in WordPress, enabling optimized navigation and CSS styling.