If you are interested in contributing to the localization of Member Access, please contact me and let me know which language you would like to translate. All help is greatly appreciated!
Localization Contributors:
Some resources on localization:
This plugin provides the template tag member_access_is_private() that can be used to determine whether or not a post should be visible only to members. You can use this tag in your templates to add custom styles to posts that are not available to the general public. For example:
<?php if (have_posts()): while (have_posts()): the_post() ?>
<?php if (function_exists(member_access_is_private) && member_access_is_private(get_the_ID())): ?>
<div class="members-only">
<?endif;?>
<h1 class="post_title"><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php if (function_exists(member_access_is_private) && member_access_is_private(get_the_ID())): ?>
</div>
<?endif;?>
<?php endwhile; endif; ?>
You should also keep in mind that calls to the_content() from within the loop may instead function as though the_excerpt() was called if the administrator has configured the plugin to show excerpts for non-public content.




