Move position in post list for a custom checkbox column

Quoting from https://www.isitwp.com/change-wordpress-admin-post-columns-order/ All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin: add_filter(‘manage_posts_columns’, ‘column_order’); function column_order($columns) { $n_columns = array(); $move=”author”; // what to move $before=”title”; // move before this foreach($columns as $key => $value) { if ($key==$before){ $n_columns[$move] = $move; } $n_columns[$key] = $value; … Read more

Filter products on category AND tag

You can define taxonomy with post type. Create and display separate categories and tags with taxonomy. Example code: add_action( ‘init’, ‘artists’ ); function artists() { register_post_type( ‘artists’, array( ‘labels’ => array( ‘name’ => __( ‘artists’ ), ‘singular_name’ => __( ‘artist’ ) ), ‘public’ => true, ‘has_archive’ => true, ‘rewrite’ => array( ‘slug’ => ‘artists’ ), … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)