• Resolved Daiv Mowbray

    (@daiv)


    Hey, thanx,
    This is a great plugin,
    I even like the code structure!
    I did want to have the admin advised when a post had been submitted, so I added a small bit of code, it could work for others.
    File: plugins/user-submitted-posts/views/submission-form.php
    around line: 13, just add this:

    <?php
    $to = 'admin@your.domain.com';
    $subject = 'New Article posted from the site by member';
    $message = 'Hey, there is a new article to be approved.';
    wp_mail( $to, $subject, $message); ?>

    This is real basic, and hard coded with no options, but it works.

    HTH

    http://wordpress.org/extend/plugins/user-submitted-posts/

Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Starr

    (@specialk)

    Thank you Daiv, that’s great to hear 🙂

    I’ve got this feature on the list for the next update. Thanks for the idea!

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: User Submitted Posts] Great plugin’ is closed to new replies.