page =& $page; } /* UpdatedPostsControl constructor */ function display () { $settings = array( // This is all bass-ackwards because the actual yes/no // setting is whether to *freeze* posts out of being // updated, not whether to *expose* it to being updated, // but in the UI we ask whether the user wants to // *expose* it. I have my reasons. Stop judging me! 'no' => __('Yes, update the syndicated copy to match'), 'yes' => __('No, leave the syndicated copy unmodified'), ); $params = array( 'setting-default' => 'default', 'global-setting-default' => 'no', 'labels' => array('yes' => 'leave unmodified', 'no' => 'update to match'), 'default-input-value' => 'default', ); if ($this->page->for_feed_settings()) : $aFeed = 'this feed'; else : $aFeed = 'a syndicated feed'; endif; ?>
When includes updated content for a post that was already syndicated, should the syndicated copy of the post be updated to match the revised version?
page->setting_radio_control( 'freeze updates', 'freeze_updates', $settings, $params ); ?>