Changeset 5918 for trunk/wp-includes/post.php
- Timestamp:
- 08/22/2007 10:30:06 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r5906 r5918 1671 1671 $lastpostdate = $cache_lastpostdate[$blog_id][$timezone]; 1672 1672 } 1673 return $lastpostdate;1673 return apply_filters( 'get_lastpostdate', $lastpostdate ); 1674 1674 } 1675 1675 … … 1698 1698 $lastpostmodified = $cache_lastpostmodified[$blog_id][$timezone]; 1699 1699 } 1700 return $lastpostmodified;1700 return apply_filters( 'get_lastpostmodified', $lastpostmodified ); 1701 1701 } 1702 1702
Note: See TracChangeset
for help on using the changeset viewer.