Advertisement
arie_cristianD

override jeg_get_author_option to avoid warning error

Jan 22nd, 2024
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. /* override jeg_get_author_option to avoid warning error */
  2.  
  3. function jeg_get_author_option( $value = null ) {
  4.     $result  = array();
  5.     $options = array_flip( jnews_get_all_author() );
  6.     if ( empty( $options ) ) {
  7.         if ( $value ) {
  8.             $values = explode( ',', $value );
  9.             foreach ( $values as $val ) {
  10.                 if ( ! empty( $val ) ) {
  11.                     $user     = get_userdata( $val );
  12.                     $result[] = array(
  13.                         'value' => $val,
  14.                         'text'  => $user->display_name,
  15.                     );
  16.                 }
  17.             }
  18.         }
  19.     } else {
  20.         foreach ( $options as $key => $label ) {
  21.             $result[] = array(
  22.                 'value' => $key,
  23.                 'text'  => $label,
  24.             );
  25.         }
  26.     }
  27.     return $result;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement