Disable comments RSS feed in WordPress wp_head
Add below code to your functions.php and theme will remove comments RSS feed from WordPress header.
<?php remove_action('wp_head', 'feed_links', 2); ?> |
Tags: Code Library WP Snippets
Add below code to your functions.php and theme will remove comments RSS feed from WordPress header.
<?php remove_action('wp_head', 'feed_links', 2); ?> |
If you want to delete a range of records from MySQL table then you can …
Here is a working code for pagination using PHP and MySql database. Its is tested …
PHP is a powerful language for web development, it have many in built functions. Here …
The refreshing time of a webpage can be define by using html tag HTTP-EQUIV “REFRESH”. …
Here is some ways to make html links for a webpage, it will be useful …