Row actions not showing? Why?
In display_rows() you are using the following code to print the ‘name’ column: echo ‘<td ‘.$attributes.’><strong><a href=”‘.$editlink.'” title=”Edit”>’.stripslashes($rec->name).'</a></strong></td>’; Nowhere do you call column_name(), which is the function you’ve defined to display the item’s and row actions: function column_name($item){ $actions = array( ‘edit’ => sprintf(‘<a href=”https://wordpress.stackexchange.com/questions/76517/?page=%s&action=%s&testimonial=%s”>Edit</a>’,$_REQUEST[‘page’],’edit’,$item[‘ID’]), ‘delete’ => sprintf(‘<a href=”https://wordpress.stackexchange.com/questions/76517/?page=%s&action=%s&testimonial=%s”>Delete</a>’,$_REQUEST[‘page’],’delete’,$item[‘ID’]), ); //Return the title contents return … Read more