get_option('trackbacks_action', array()); $comments_action_arr = $options->get_option('comments_action', array()); ?>
format_date_time($trackback_action_arr['timestamp']);
if ($trackback_action_arr['action']) {
// translators: %s is a date and time
printf(esc_html__('All trackbacks on existing posts were enabled on the %s.', 'wp-optimize'), esc_html($trackback_action_timestamp));
} else {
// translators: %s is a date and time
printf(esc_html__('All trackbacks on existing posts were disabled on the %s.', 'wp-optimize'), esc_html($trackback_action_timestamp));
}
}
?>
format_date_time($comments_action_arr['timestamp']);
if ($comments_action_arr['action']) {
// translators: %s is a date and time
printf(esc_html__('All comments on existing posts were enabled on the %s.', 'wp-optimize'), esc_html($comments_action_timestamp));
} else {
// translators: %s is a date and time
printf(esc_html__('All comments on existing posts were disabled on the %s.', 'wp-optimize'), esc_html($comments_action_timestamp));
}
}
?>