Title.php 246 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php namespace ACA\YoastSeo\Export\Post; use ACP\Export; class Title implements Export\Service { public function get_value( $id ) { $title = get_post_meta( $id, '_yoast_wpseo_title', true ); return $title ?: get_the_title( $id ); } }