I am trying to show pods ui on front end which it now has been updated to do so however my porblem is its still using the old admin css from wordpress. So my questions is how do i load admin styles in a page template like the following. Its missing the styles like wide fat etc
<?php
/**
* Template Name: Goals Managment
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
get_header();
$object = pods( 'goals' );
$add_fields = $edit_fields = array(
'title',
'points',
'foundation_payout',
'kids_payout',
'total_payout',
);
$object->ui = array(
'title' => 'goals',
'columns' => array(
'title' => 'Title',
'points' => 'Points',
'foundation_payout' => 'Foundation Payout',
'total_payout' => 'Total Payout'
),
'add_fields' => $add_fields,
'edit_fields' => $edit_fields
);
pods_ui_manage($object);
get_footer();
?>