How to manage your ImagePress account

ImagePress users have access to several features and settings for their accounts. Accounts are reachable either from the profile page or from a hardcoded link.

<?php if (!is_user_logged_in()) { ?>
    <ul>
        <li><a href="<?php echo get_imagepress_option('cinnamon_account_page'); ?>">Log in</a></li>
    </ul>
<?php } else if (is_user_logged_in()) { ?>
    <ul>
        <li><a href="<?php echo getImagePressProfileUri($current_user->ID, false)' ?>">View profile</a></li>
        <li><a href="<?php echo get_imagepress_option('cinnamon_edit_page'); ?>">Edit profile</a></li>
        <li><a href="<?php echo wp_logout_url(home_url()); ?>">Log out</a></li>
    </ul>
<?php } ?>

The code above allows you to add a simple user menu to your theme.

The profile editor allows you to see basic statistics about your account, set your account details, social details, author details, profile details and manage images and collections.