Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author bestwebsoft

    (@bestwebsoft)

    Hi,

    You can add the author. It is necessary to apply bwsplgns_get_pdf_print_content filter. For example:

    function add_post_author( $content, $post ) {
      $author = get_the_author_meta( 'nicename', $post->post_author );
      return $content . "<hr/>Author: {$author}<hr/>";
    }
    add_filter( 'bwsplgns_get_pdf_print_content', 'add_post_author', 10, 2 );

    Sincerely,
    BestWebSoft Support Team

    Thread Starter sublines

    (@sublines)

    Thanks, this helped!

    Plugin Author bestwebsoft

    (@bestwebsoft)

    Hi,

    We’re glad that everything is fine now. For more convenience, we recommend contacting us via our Help Center in future (http://support.bestwebsoft.com).

    Have a nice day!

    Sincerely,
    BestWebSoft Support Team

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show author’ is closed to new replies.