• Is it possible to add author tags to the sideblog plugin?

    I have multiple authors adding asides to my site and would like the author for each aside to be acknowledged.

    Is this possible within the plugin?

Viewing 1 replies (of 1 total)
  • I do not know whether this is still needed but I have replaced part of the code because I do not need post date URL:

    $patterns[] = “%postdate_url%”;

    by

    $patterns[] = “%author%”;

    then

    $replacements[] = “” . $sideblog_content->post_date . ““;

    by

    $author = get_userdata($sideblog_content->post_author);
    $replacements[] = $author->display_name;

    and

    • %author%

    by

  • %postdate_url%
Viewing 1 replies (of 1 total)
  • The topic ‘Sideblog – add author tag?’ is closed to new replies.