Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: New Code: show forum posts since last visit


r-a-y
Keymaster

@r-a-y

1) hook into the get_header action

eg. add_action('get_header','your_ob_start_call_in_a_function');

2) hook into the wp_head action with a high priority

eg. add_action('wp_head','your_code_in_a_function',999);

3) is the only edit you have to make to the template

Skip to toolbar