So I have tried this
<?php
/*
Plugin Name: jw-book-enchance
*/
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
function addOptions($post_id){
$post = get_post($post_id);
return $post_id;
}
add_action('mbdb_book_grid_after_link','addOptions');
?>
and also tried echoing and only echo shows output. but it shows it before all the the posts rather than with them.
not sure what i’m doing wrong