Include widget within newsletter template?

You may already know this, but you need to specify the widget’s class name as the $widget_name variable in the template tag. For example, Depending on the widget, you may also need to add parameters to the_widget() to get it to display properly — see notes on thewidget() $instance and $args in the codex. http://codex.wordpress.org/Function_Reference/the_widget … Read more

Send Newsletter-Email when post changes

You can use a hook developed for such kind of purposes: post_updated Use this hook whenever you need to compare values before and after the post update. Lets get some codding: function mail_on_update($post_ID, $post_after, $post_before){ if($post_after->post_content != $post_before->post_content){ // wp_mail() , mail() here } } add_action( ‘post_updated’, ‘mail_on_update’, 10, 3 ); // 10 – priority, … Read more