Changes between Initial Version and Version 7 of Ticket #15604
- Timestamp:
- 08/31/2012 11:01:20 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15604
-
Property
Status
changed from
new
toclosed
-
Property
Component
changed from
General
toFeeds
- Property Owner set to markjaquith
-
Property
Milestone
changed from
Awaiting Review
to3.5
- Property Keywords has-patch commit added
-
Property
Resolution
changed from
to
fixed
-
Property
Status
changed from
-
Ticket #15604 – Description
initial v7 1 1 The content of my posts are empty. Instead I'm using custom fields. I'm using the filter the_content to format the content. Like this 2 2 {{{ 3 3 function my_content($text) { 4 4 $postid = get_the_ID(); … … 8 8 9 9 add_filter('the_content', 'my_content', 0); 10 10 }}} 11 11 However. Since the "real" content is empty. It seems as if wordpress, in the feed, use the excerpt, instead of the content. 12 12