• Hi guys,

    I was trying to find out can I setup the WordPress this way, that anyone can publish articles with only one button click? Is it possible to make article publishing like comment writing, very easy, just press one button 🙂 ?
    I mean with no need to register, like in a forum ?

    The second question is it possible to make all links that user publish to appear with javascipt (I know its possible to make links to appear with nofollow)?

    Thanks,
    Al.

Viewing 3 replies - 1 through 3 (of 3 total)
  • To make a one-button posting mechanism, you’re going to have to create your own file and then integrate it into your site. You can then default a lot of the things like categories and so on and allow people to just publish.

    Regards

    im trying to make the same config with my wp, so if anybody has the answer to this…please let us know ;P

    mmm.
    i’ve done this:

    first: create a low level user (at least level 2)
    second: make a copy of wp-login.php and rename it to something like ‘public.php’
    then, edit this settings:

    case ‘login’ :
    default:

    $user_login = ‘public’; // the new user you made.
    $user_pass = ‘public’; // his password.
    $redirect_to = ‘wp-admin/post.php’; // the page to publish articles.
    $using_cookie = false;

    once done, upload this file to the same dir as wp-login.php, there you have: a-totally-basic-automatic-login-public-publishing-system ;P

    and the rest isn’t that hard.
    you’ll have to edit post.php or page-new.php, depends what are your needs.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can WordPress made public publishing?’ is closed to new replies.