<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/admin</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Tue, 18 Jun 2013 15:26:45 GMT</pubDate>
<item>
<title>(PHP) Wordpress Admin Area Functions - andrewcolby</title>
<link>http://snipplr.com/view/71390/wordpress-admin-area-functions/</link>
<description><![CDATA[ <p>Wordpress admin area functions</p> ]]></description>
<pubDate>Tue, 04 Jun 2013 18:43:22 GMT</pubDate>
<guid>http://snipplr.com/view/71390/wordpress-admin-area-functions/</guid>
</item>
<item>
<title>(PHP) Wordpress Remove Admin Menu Items - oneupdzn</title>
<link>http://snipplr.com/view/71073/wordpress-remove-admin-menu-items/</link>
<description><![CDATA[ <p>Remove top level menus and sub menus from the admin menu.</p> ]]></description>
<pubDate>Tue, 07 May 2013 11:17:44 GMT</pubDate>
<guid>http://snipplr.com/view/71073/wordpress-remove-admin-menu-items/</guid>
</item>
<item>
<title>(PHP) Hide Page/Post Editor in Admin Backend - rickahontas</title>
<link>http://snipplr.com/view/70325/hide-pagepost-editor-in-admin-backend/</link>
<description><![CDATA[ <p>This is a combined version of Bill Erickson's hide post editor and rilwis' Metabox include for specific IDs. It hides the editor for a specified post ID. You can have multiple IDs, just separate with commas.</p> ]]></description>
<pubDate>Sat, 09 Mar 2013 03:26:05 GMT</pubDate>
<guid>http://snipplr.com/view/70325/hide-pagepost-editor-in-admin-backend/</guid>
</item>
<item>
<title>(PHP) Add columns to admin page for a Custom Post Type  - leoken</title>
<link>http://snipplr.com/view/67735/add-columns-to-admin-page-for-a-custom-post-type-/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 14 Oct 2012 19:36:50 GMT</pubDate>
<guid>http://snipplr.com/view/67735/add-columns-to-admin-page-for-a-custom-post-type-/</guid>
</item>
<item>
<title>(Bash) Website monitoring - AsTeR</title>
<link>http://snipplr.com/view/63498/website-monitoring/</link>
<description><![CDATA[ <p>This will curl every 10 seconds news.thesite.com and look for Awesomestring in it, if it's there, the output will play a music file through xargs. If watch is not installed on your system, install it with brew.</p> ]]></description>
<pubDate>Wed, 22 Feb 2012 12:05:24 GMT</pubDate>
<guid>http://snipplr.com/view/63498/website-monitoring/</guid>
</item>
<item>
<title>(PHP) Wordpress: Hide Admin Meta Boxes - f6design</title>
<link>http://snipplr.com/view/63396/wordpress-hide-admin-meta-boxes/</link>
<description><![CDATA[ <p>Remove meta boxes from the Wordpress admin area. Useful for simplifying Wordpress' admin interface for your clients. Add this snippet to your Wordpress theme's functions.php file.</p> ]]></description>
<pubDate>Fri, 17 Feb 2012 18:18:56 GMT</pubDate>
<guid>http://snipplr.com/view/63396/wordpress-hide-admin-meta-boxes/</guid>
</item>
<item>
<title>(JavaScript) Wordpress 3 make new users exactly the same as old - jcottrell</title>
<link>http://snipplr.com/view/62839/wordpress-3-make-new-users-exactly-the-same-as-old/</link>
<description><![CDATA[ <p>Go through all the authors of a wordpress import and make them the same as the previous authors (Wordpress 3.3).</p> ]]></description>
<pubDate>Sun, 29 Jan 2012 12:51:15 GMT</pubDate>
<guid>http://snipplr.com/view/62839/wordpress-3-make-new-users-exactly-the-same-as-old/</guid>
</item>
<item>
<title>(JavaScript) Wordpress 3 multi-post/page deleter - jcottrell</title>
<link>http://snipplr.com/view/62831/wordpress-3-multipostpage-deleter/</link>
<description><![CDATA[ <p>Delete a page of wordpress posts with one click ("Run" in Firebug or Developer Tools)</p> ]]></description>
<pubDate>Sun, 29 Jan 2012 07:06:19 GMT</pubDate>
<guid>http://snipplr.com/view/62831/wordpress-3-multipostpage-deleter/</guid>
</item>
<item>
<title>(Django) Override the change_view in the admin - magicrebirth</title>
<link>http://snipplr.com/view/62778/override-the-changeview-in-the-admin/</link>
<description><![CDATA[ <p>Adding another button with name "addnextid" would trigger our custom action, that redirects the user to the changeform screen for the next available item (by ID).

Then you can override admin/submit_line.html. Copy the version in contrib.admin.templates into your project. Mine is myproject/templates/admin/submit_line.html, but you could use /myproject/myapp/templates/admin/submit_line.html.

Next, edit the copy and add the code for showing the 'Save and edit next item (by ID)' link, which is caught via the "_addnextid" name. 

p.s.
The submit_line.html template is called in change_form.html via the {% submit_row %} tag.</p> ]]></description>
<pubDate>Thu, 26 Jan 2012 04:35:50 GMT</pubDate>
<guid>http://snipplr.com/view/62778/override-the-changeview-in-the-admin/</guid>
</item>
<item>
<title>(PHP) Remove or Hide Admin Menu Links for Certain or Specific Users or Roles - rliverman</title>
<link>http://snipplr.com/view/61976/remove-or-hide-admin-menu-links-for-certain-or-specific-users-or-roles/</link>
<description><![CDATA[ <p>In this example I used the "Members" plugin to add a capability called "hide_jobs" and that was the trigger to hide certain admin menus and also hide the "Right Now" dashboard widget.</p> ]]></description>
<pubDate>Mon, 19 Dec 2011 07:09:21 GMT</pubDate>
<guid>http://snipplr.com/view/61976/remove-or-hide-admin-menu-links-for-certain-or-specific-users-or-roles/</guid>
</item>
<item>
<title>(PHP) Remove Meta Boxes from Dashboard - swoicik</title>
<link>http://snipplr.com/view/61962/remove-meta-boxes-from-dashboard/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 18 Dec 2011 12:27:13 GMT</pubDate>
<guid>http://snipplr.com/view/61962/remove-meta-boxes-from-dashboard/</guid>
</item>
<item>
<title>(PHP) Custom Admin Login Logo Link - swoicik</title>
<link>http://snipplr.com/view/61960/custom-admin-login-logo-link/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 18 Dec 2011 12:27:11 GMT</pubDate>
<guid>http://snipplr.com/view/61960/custom-admin-login-logo-link/</guid>
</item>
<item>
<title>(PHP) Custom Admin Login Header Logo - swoicik</title>
<link>http://snipplr.com/view/61958/custom-admin-login-header-logo/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 18 Dec 2011 12:27:09 GMT</pubDate>
<guid>http://snipplr.com/view/61958/custom-admin-login-header-logo/</guid>
</item>
<item>
<title>(PHP) Custom Admin Dashboard Header Logo - swoicik</title>
<link>http://snipplr.com/view/61957/custom-admin-dashboard-header-logo/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 18 Dec 2011 12:27:08 GMT</pubDate>
<guid>http://snipplr.com/view/61957/custom-admin-dashboard-header-logo/</guid>
</item>
<item>
<title>(PHP) Admin Footer Modification - swoicik</title>
<link>http://snipplr.com/view/61956/admin-footer-modification/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 18 Dec 2011 12:25:47 GMT</pubDate>
<guid>http://snipplr.com/view/61956/admin-footer-modification/</guid>
</item>
<item>
<title>(PHP) Remove unnecessary menu items from Wordpress admin. - f6design</title>
<link>http://snipplr.com/view/61285/remove-unnecessary-menu-items-from-wordpress-admin/</link>
<description><![CDATA[ <p>Simplify the Wordpress admin area for clients by hiding menu items. Add this snippet to your Wordpress theme's functions.php file.</p> ]]></description>
<pubDate>Tue, 29 Nov 2011 09:09:14 GMT</pubDate>
<guid>http://snipplr.com/view/61285/remove-unnecessary-menu-items-from-wordpress-admin/</guid>
</item>
<item>
<title>(PHP) Anti-Word Alert - travishines</title>
<link>http://snipplr.com/view/61209/antiword-alert/</link>
<description><![CDATA[ <p>I've yet to work on a WordPress site where at least once post wasn't copied from Microsoft Word, producing a mess of inline tags and awful markup.

This helps prevent that, just a little.</p> ]]></description>
<pubDate>Sat, 26 Nov 2011 05:37:37 GMT</pubDate>
<guid>http://snipplr.com/view/61209/antiword-alert/</guid>
</item>
<item>
<title>(PHP) Magento Admin Form - etechblog</title>
<link>http://snipplr.com/view/60493/magento-admin-form/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 03 Nov 2011 00:01:24 GMT</pubDate>
<guid>http://snipplr.com/view/60493/magento-admin-form/</guid>
</item>
<item>
<title>(PHP) Add featured image thumbnail to WordPress admin columns - i-am-andy</title>
<link>http://snipplr.com/view/60306/add-featured-image-thumbnail-to-wordpress-admin-columns/</link>
<description><![CDATA[ <p>The admin pages listing the site’s posts and pages come with various text columns (title, tags, categories, author and so on). In order to see what the featured images are, you have to visit each post or page individually. What I will show here, is how to get add a column with a reasonably sized thumbnail copy of the featured image. Please note that this only works for themes that support featured images.</p> ]]></description>
<pubDate>Fri, 28 Oct 2011 20:56:43 GMT</pubDate>
<guid>http://snipplr.com/view/60306/add-featured-image-thumbnail-to-wordpress-admin-columns/</guid>
</item>
<item>
<title>(PHP) Hide update warning for every user but admin  - florent</title>
<link>http://snipplr.com/view/60024/hide-update-warning-for-every-user-but-admin-/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 21 Oct 2011 02:28:12 GMT</pubDate>
<guid>http://snipplr.com/view/60024/hide-update-warning-for-every-user-but-admin-/</guid>
</item>
</channel>
</rss>