Tagged Questions
2
votes
1answer
39 views
Hook to edit an column on comments screen?
At the moment I'm doing
add_filter("manage_edit-comments_columns", function($columns) {
unset($columns["author"]);
$columns_one = array_slice($columns,0,1);
$columns_two = ...
2
votes
1answer
99 views
Gallery Settings Change available Columns
Is there a filter hook which changes the number of available columns in gallery settings screen. I'm talking about the :
<label class="setting">
<span><?php _e('Columns'); ...
0
votes
2answers
205 views
Remove custom taxonomy column from my custom post type columns
I am using wp 3.5 i have a custom post (sp_product) and also i have custom taxonomy. I want to remove that custom taxonomy filter column but i don't want to make 'show_admin_column' => false.
I ...
0
votes
1answer
72 views
create 2 custom columns in page edit in Admin panel
Hey all i have this code here:
if ( !function_exists('AddThumbColumn') && function_exists('add_theme_support') ) {
// for post and page
add_theme_support('post-thumbnails', array( ...
2
votes
1answer
985 views
Custom sortable columns ordered by meta-value?
I have no idea why my sortable function does not sort my "events" my a custom post-meta. I have a custom-post-type named wr_event… I have my custom columns set up and my post-meta is shown in the ...
1
vote
1answer
354 views
How do I access the menus produced by Dashboard > Appearance > Menus
A continuation to this question:
Replacing WordPress menu functionality with a plugin
Since I really rarely work with WordPress (I've done a lot of work with phpBB, myBB, Concrete5, and custom PHP ...
0
votes
1answer
943 views
Remove filter and view options from custom post type edit screen
I have my CPT edit screen almost looking how I want it but want to remove the filter and view options from this screen as they are not needed for this interface. How do I remove them? Are there any ...