Allowing HTML within WordPress excerpt is a very common request. Therefore, I am providing likely the most complete solution available
Continue readingCategory: Boilerplates
Functions.php as a plugin
An idea and full explanation (by Justin Tadlock).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php /** * Plugin Name: My Custom Functions * Plugin URI: http://yoursite.com * Description: This is an awesome custom plugin with functionality that I'd like to keep when switching things. * Author: Your Name * Author URI: http://yoursite.com * Version: 0.1.0 */ /* Place custom code below this line. */ /* Place custom code above this line. */ ?> |
Continue reading