Created
May 26, 2011 12:28
-
-
Save derpixler/993032 to your computer and use it in GitHub Desktop.
Wordpress: hook in the tag-list table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'manage_category_custom_column','myTestC'); | |
function myTestC($content){ | |
return $content; | |
} |
//create a new row
add_action( 'manage_edit-category_columns', 'myTest');
function myTest($content){
$content['test'] = 'hallo';
return $content;
}
//fill the row with content
add_filter( "manage_category_custom_column", 'myTestC', 10, 3 );
function myTestC($column_name, $columid, $termId){
var_dump($column_name, $id, $termId);
}
this works, with WP Codex ;)
//create a new row
add_action( 'manage_edit-category_columns', 'my_test' );
function my_test( $column ) {
$column['test'] = 'hallo';
return $column;
}
//fill the row with content
add_filter( 'manage_category_custom_column', 'my_test_c', 10, 3 );
function my_test_c( $foo, $column_name, $term_id ) {
var_dump( $column_name, $term_id );
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add_filter( "manage_category_custom_column", 'myTestC', 10, 3 );
function myTestC($column_name, $id, $der){
var_dump($column_name, $id, $der);
return $content;
}