Post.php 238 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php namespace ACP\Helper\Select\Value; use AC; use WP_Post; final class Post implements AC\Helper\Select\Value { /** * @param WP_Post $post * * @return int */ public function get_value( $post ) { return $post->ID; } }