Log output of post id and author name
-
Method guest_author_name() of the plugin contains log output of post id and author name. Tell me please, what is that for?
Version 4.32 (Stable Tag 4.33)function guest_author_name( $name ) { $id = $this->get_post_id(); error_log( 'post-id=' . $id ); $author = get_post_meta( $id, 'sfly_guest_author_names', true ); if ( $author ) { $name = $author; error_log( $author ); } return $name; }
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Log output of post id and author name’ is closed to new replies.