Would you mind just providing an example of using the loop_start
action please?
I've tried the following to no avail:
public function __construct() {
add_shortcode('CONTINUED', array(&$this, 'replaceShortcode'));
add_action('loop_start', array(&$this, 'replaceShortcode'));
}
public function replaceShortcode() {
global $post;
if(is_user_logged_in()) {
return str_replace('[CONTINUED]', '<div>In page 1</div><!--nextpage--><div>In page 2</div>', $post->post_content);
}
}