public function action_init_theme() { // Apply Format::autop() to post content... Format::apply( 'autop', 'post_content_out' ); // Apply Format::autop() to comment content... Format::apply( 'autop', 'comment_content_out' ); /* Only triggered by tag, with more text linked to full post */ Format::apply_with_hook_params('more', 'post_content_out', '--More--'); // Truncate content excerpt at "more" or 56 characters... Format::apply_with_hook_params( 'more', 'post_content_excerpt', '',56, 1 ); }