After running the WordPress export/import tool to move a blog, I noticed the excerpts were not showing up on the blog archive pages. Usually, WordPress will auto-generate an excerpt for posts if a custom excerpt does not exist. The problem was that the export/import tools were leaving whitespace characters (tabs, spaces, line breaks) in the […]
Tag: PHP
WordPress Excerpts Empty but Post Has Content
Mar 08, 2019
WordPress Custom Post Types and 404 Error
Nov 02, 2013
If you’re working on a custom post type in WordPress and make a change to the post type or category slug (or add a new one), and you’re getting 404 errors when visiting the pages at the new address, chances are you just need to refresh the WordPress rewrite rules for permalinks. You can do […]
PHP: Round Number to Minimum Precision
Dec 22, 2012
While working on an e-commerce system, I needed to use PHP to round a number to a minimum number of decimal places, but allow for more if needed. For instance, if the value was 1.2, I’d want it rendered as $1.20, but if it was 1.256, I’d want it to keep the precision and render […]
Joomla 2.5 Component Categories Sub-Nav
Dec 21, 2012
I recently found Joomla’s feature to easily add custom component-specific nested Categories. It makes for a quick way to create categories similar to what is used in com_content and an interface to manage those categories without having to build it all manually. You can use JForm to easily add a select menu of your custom […]
Joomla! 2.5 Toolbar Popup Link Icon
Sep 08, 2012
Today I needed to add a new toolbar button to a custom Joomla! component. In the past, I’ve used a more convoluted method of overriding the submitbutton() (or Joomla.submitbutton) JavaScript function and triggering the modal popup manually, but stumbled upon a better solution.