Malam tadi aku ngedownload paket-paket KDE dari repository kubuntu. Setelah nyoba-nyoba, setting-setting, eh tampilannya mirip Mac OSX! Mirip banget. aku pengen banget punya Mac, tapi sayang harganya muaahhal… Ngga disangka bisa kayak Mac, malah lebih bagus lagi. Cuma navigasi yang agak ribet, butuh penyesuaian…
aku make translucency (efek transparan), shadow (bayangan) dan efek-efek cool [...]

more »

Tips: How to get rid RSS Feed from Wordpress Dashboard

Posted on: February 12, 2008
Tags: ,

Do you want to get rid RSS Feed on your Wordpress Dashboard like this following image?

Wordpress Dashboard

It’s so easy, you only edit one file: wp-admin/index.php. I currently use Wordpress 2.3.3 but it may be applied to any version 2.x

First, open file wp-admin/index.php, then put comment on line
add_action( 'admin_head', 'index_js' );
see the image below:

Alter script

Upload it and then re-check your Dashboard. Voila! The RSS Feed are gone :D. This is how the process flows:
index_js function contains a jQuery function which is an AJAX (Asynchronous Javascript and XML) to load RSS Feed then inserted into this HTML code:

<div id="devnews"></div>
<div id="planetnews"></div>

add_action function add this code to the admin head. This skrip will fetch the appropriate code when this script is accessed. The result code will be inserted into HTML tag with ID devnews and planetnews.

The drawback is you must edit file wp-admin/index.php whenever you upgrade Wordpress, but I think it’s worth because you only edit one line only ;).

Update:

For you who use Wordpress 2.5 and above, comment this line too from:
<?php wp_dashboard(); ?>

to
<?php //wp_dashboard(); ?>

Leave a Comment