Posts Tagged ‘wordpress’
Menu Manager WordPress Plugin
Finally i create another plugin for wordpress, i call it Menu Manager. Menu managers enables you to manage blog menu very easy. You can add Pages, Categories, and Custom Link into your blog menu. You can manage the menu structure into a dropdown tree menu with whatever structure you like.
User Link Feed Plugin for Wordpress
Finally i create a plugin for wordpress, i call it User Link Feed, you can see it in action here.
User Link Feed enables user blog to contribute link feeds include an image fetched for the link.
Title, Description, and Images are fetched directly from the link source in realtime.
The user interaction when contribute the link is like facebook link share, user can choose which images to be use that fetched.

User Link Feed List

User Link Feed Form
Majalahku Premium Wordpress Theme

Majalahku
Sekarang kita akan membahas fasilitas dari admin panel yang disediakan oleh Theme Majalahku buatan iCreativelabs
Membuat form reply comment di wordpress
Tutorial singkat cara membuat threaded comment di wordpress. Tutorial ini ditujukan kepada developer saja, dan langsung aja deh ^_^
1. Buka file comments.php yang berada didalam folder themes yang digunakan.
2. Struktur tag html untuk daftar komentar diperkirakan harus seperti berikut ini supaya mudah:
<ul>
<li id="comment_<?php echo $comment->comment_ID; ?>">
<div>
<strong><a href="javascript:;" onclick="javascript:open_reply('comment_<?php echo $comment->comment_ID; ?>', '<?php echo $post->ID; ?>', '<?php echo $comment->comment_ID; ?>')">REPLY</a></strong>
<strong><?php comment_author_link() ?></strong> / <?php echo $comment->comment_date; ?>
<div></div>
</div>
<?php comment_text() ?>
<div></div>
</li>
</ul>







Create a WordPress Options Panel Using CodeIgniter
The first thing that we all think about when we want to start to create a WordPress Options Panel is the code structure. How the code structure is quite clean and easy to enhance.
WordPress is one of the most popular Content Management Software (CMS) systems out there.So how we would like integrate CodeIgniter into our WordPress Options Panel.
As you already know that CodeIgniter is the popular PHP Framework, which is easy to use and quite light.
So today, let me guide you through the integration process of CodeIgniter into WordPress.