Advertisement
julien731

AS - Column Attr. Callback Params.

May 4th, 2016
2,067
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. array(
  2.     'column_attributes' => array(
  3.         'body' => array( 'data-book' => array( 'book_author', 'War and Peace' ) )
  4.     )
  5. );
  6.  
  7. function book_author( $args ) {
  8.  
  9.     if ( 'War and Peace' === $args[0] ) {
  10.         return 'Leo Tolstoy';
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement