• I want to add a direct link for my bloggers to use to be able to click and immediately begin to post. Is there such a link or widget or button code I can add to have this option on each blog page?

    [title moderated]

Viewing 1 replies (of 1 total)
  • Consider downloading and installing Otto’s PHP Code Widget.

    Then put this in one of those widgets:

    <?php
    global $user_login,$user_ID;
    get_currentuserinfo();
    if($user_login) {
    $user = new WP_User( $user_ID );
    if ( $user->has_cap('edit_posts')) {
    echo '<a href="'. get_bloginfo( "wpurl") .'/wp-admin/post-new.php">Create new post</a>';
    }
    }
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Add a link for my bloggers to click and immediately begin to post’ is closed to new replies.