Dropbox di halaman administrasi wordpress
November 18th, 2009Setelah sebelumnya saya menulis tentang dropbox, sekarang saya memindahkan halaman website dropbox ke halaman administrasi wordpress.
Buatlah sebuah file php, misalnya dropbox.php dan tulislah kode-kode dibawah ini
<?php
define('DROPBOX','dropbox-frame');
function wp_dropbox() {
add_menu_page(__('Dropbox',DROPBOX), __('Dropbox',DROPBOX), '1', __FILE__ , 'wp_dropbox_manage', '');
}
add_action('admin_menu', 'wp_dropbox');
Kode ini berguna untuk membuat menu di samping halaman administrasi website.
setelah itu, tulis kode dibawah ini
function wp_dropbox_manage(){
?>
<div class="wrap">
<div class="form-wrap">
<table class="widefat">
<tr><td>
<iframe frameborder="0" id="iframe-display" src="https://www.dropbox.com" height="1024" style="width:100%;" />
</td>
</tr>
</table>
</div>
</div>
<?php
}
?>
Kode diatas ditujukan untuk menampilkan website dropbox melalui iframe dihalaman administrasi wordpress.
Kode Lengkap
<?php
/*
Plugin Name: Dropbox Iframe
Plugin URI: http://ibad.bebasbelanja.com
Description: Add Dropbox to administration using frame
Author: Abdul Ibad
Version: 1.0
Author URI: http://ibad.bebasbelanja.com
*/
define('DROPBOX','dropbox-frame');
function wp_dropbox() {
add_menu_page(__('Dropbox',DROPBOX), __('Dropbox',DROPBOX), '1', __FILE__ , 'wp_dropbox_manage', '');
}
add_action('admin_menu', 'wp_dropbox');
function wp_dropbox_manage(){
?>
<div class="wrap">
<div class="form-wrap">
<table class="widefat">
<tr><td>
<iframe frameborder="0" id="iframe-display" src="https://www.dropbox.com" height="1024" style="width:100%;" />
</td>
</tr>
</table>
</div>
</div>
<?php
}
?>
Jika anda kesulitan dalam menuliskan kode-kode diatas, anda bisa men-download file source-nya di bawah post ini.Download
Incoming search terms for the article:
- dropbox
- dropbox com
- drop box
- dropbox website
- wordpress dropbox
- cara membuat administrasi dengan php
- cara buat dropbox di blog
- membuat halaman administrasi di wordpress
- menampilkan dropbox di website
- apa itu dropbox com
Category: umum








