how to change automatic placing of social plugins below content?
The plugin add content using the_content filter with a lower priority: 100. So you can create a function that output metafields and use same filter with an higher priority, even the standard 20 priority is good. function my_post_custom_data( $content ) { if ( ! is_single() ) return; global $post; // here go the code that … Read more