When developing a website with WordPress, one of important thing you need to consider before you start to upload tonne of media files to your media library is how to organise your media files. At the early stage after WordPress installation it may not seems any issue, but in long run you will realise how…
plugin
-
-
Berguna bila kita nak bagi public accout access wp-admin. Mungkin ada beberapa info yang tak perlu depa tau kita remove. Example #1 using remove_meta_box : add_action(‘wp_dashboard_setup’,’remove_dashboard_widgets”); function remove_jetpack(){ if ( ! current_user_can(‘manage_options’) ){ remove_meta_box( ‘dashboard_quick_press’,’dashboard’, ‘side’ ); //Quick Press widget remove_meta_box( ‘dashboard_recent_drafts’, ‘dashboard’, ‘side’ ); //Recent Drafts remove_meta_box( ‘dashboard_primary’, ‘dashboard’, ‘side’ ); //WordPress.com Blog remove_meta_box(…