Guest User

Untitled

a guest
Nov 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /**
  2. * Get the value from the post custom values.
  3. *
  4. * @deprecated 1.5.0
  5. * @deprecated use WPSEO_Meta::get_value()
  6. * @see WPSEO_Meta::get_value()
  7. *
  8. * @param string $val Internal name of the value to get.
  9. * @param int $postid Post ID of the post to get the value for.
  10. *
  11. * @return string
  12. */
  13. function wpseo_get_value( $val, $postid = 0 ) {
  14. _deprecated_function( __FUNCTION__, 'WPSEO 1.5.0', 'WPSEO_Meta::get_value()' );
  15.  
  16. return WPSEO_Meta::get_value( $val, $postid );
  17. }
Add Comment
Please, Sign In to add comment