Make WordPress Core

Changes between Initial Version and Version 7 of Ticket #15604


Ignore:
Timestamp:
08/31/2012 11:01:20 AM (12 years ago)
Author:
SergeyBiryukov
Comment:

Replying to mdgl:

See also #10509, possibly related/duplicate.

Indeed, thanks.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15604

    • Property Status changed from new to closed
    • Property Component changed from General to Feeds
    • Property Owner set to markjaquith
    • Property Milestone changed from Awaiting Review to 3.5
    • Property Keywords has-patch commit added
    • Property Resolution changed from to fixed
  • Ticket #15604 – Description

    initial v7  
    11The 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{{{
    33function my_content($text) {
    44  $postid = get_the_ID();
     
    88
    99add_filter('the_content', 'my_content', 0);
    10 
     10}}}
    1111However. Since the "real" content is empty. It seems as if wordpress, in the feed, use the excerpt, instead of the content.
    1212