How to splice in wp_links links into the loop?

I’ve tried something similar to that (well, slightly different, what I did was try to create a timeline where posts and comments showed up in the same timeline)… Merging those two arrays is not easy, because the post object has completely different properties to the link object. If you wanted to do it, you’d have … Read more

Disable “Blogroll” or “WordPress Dashboard News” section in WordPress v.4.1?

If you want to remove metaboxes from the dashboard page you can add this to functions.php function remove_dashboard_widgets () { 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(‘dashboard_secondary’,’dashboard’,’side’); //Other WordPress News remove_meta_box(‘dashboard_incoming_links’,’dashboard’,’normal’); //Incoming Links remove_meta_box(‘dashboard_plugins’,’dashboard’,’normal’); //Plugins remove_meta_box(‘dashboard_right_now’,’dashboard’, ‘normal’); //Right Now remove_meta_box(‘rg_forms_dashboard’,’dashboard’,’normal’); //Gravity Forms remove_meta_box(‘dashboard_recent_comments’,’dashboard’,’normal’); //Recent Comments remove_meta_box(‘icl_dashboard_widget’,’dashboard’,’normal’); //Multi Language Plugin remove_meta_box(‘dashboard_activity’,’dashboard’, ‘normal’); … Read more