Warning: Cannot modify header information - headers already sent by (output started at /home/n742ef5/public_html/forum/index.php:3) in /home/n742ef5/public_html/forum/wp-content/plugins/asgaros-forum/includes/forum-online.php on line 80

Warning: Cannot modify header information - headers already sent by (output started at /home/n742ef5/public_html/forum/index.php:3) in /home/n742ef5/public_html/forum/wp-content/plugins/asgaros-forum/includes/forum-unread.php on line 43

Warning: Cannot modify header information - headers already sent by (output started at /home/n742ef5/public_html/forum/index.php:3) in /home/n742ef5/public_html/forum/wp-content/plugins/asgaros-forum/includes/forum-unread.php on line 82
How to create a custom post type Step 4 – Sithtamil – My Notes

Forum

Please or Register to create posts and topics.

How to create a custom post type Step 4

Implementing sorting function to post type columns

add_filter("manage_edit-movie_sortable_columns", "wpl_owt_cpt_sortable_columns");

function wpl_owt_cpt_sortable_columns($columns) {

$columns['pub_email'] = "owt_email";
$columns["pub_name"] = "owt_name";

return $columns;
}