steem_posts_author - blockpress/blockpress.me GitHub Wiki

{steem_profile_author}

Applies to: steem-posts.html

This placeholder will be replaced with the username of the posts author, where ever it appears in the template.

Example 1: Creating a link to the users profile

In this example, we use this placeholder, twice, to create a link to the post authors profile.

<a href="javascript:getSteemProfile('{steem_posts_author}');">{steem_posts_author}</a>

Which for a given post will be rendered as:

<a href="javascript:getSteemProfile('antonchanning');">antonchanning</a>

Back to Developer reference.