Get the latest version: bmpress-latest.zip
If you want to create a small social bookmarking community and dedicate your WP install to bmPress, you can run our dedicated theme:
For example, default (kubrick) Wordpress theme.
In index.php/archive.php/single.php/search.php you should find something like the following:
<div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2>...</h2> <small>...</small> <div class="entry"> ... </div> <p class="postmetadata">...</p> </div>
Customise the three files (index.php/archive.php/single.php/search.php) like this:
<div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <?php if (function_exists('bm_is_a_mark') && bm_is_a_mark()) : ?> <?php bm_the_mark() ?> <?php else : ?> <h2>...</h2> <small>...</small> <div class="entry"> ... </div> <p class="postmetadata">...</p> <?php endif; ?> </div>