際際滷

際際滷Share a Scribd company logo
Remastering Theme




http://tsauri28.myhaley.com
tsauri28@myhaley.com
?   Style.css
?   Index.php
?   Header.php
?   Sidebar.php
?   Footer.php
?   Function.php
?   Single.php
?   Page.php
? Menempatkan style untuk theme
? Menyimpan data theme

/*
Theme Name: Muawanah
Description: 2 Column, CSS, xHTML, JQuery. Download other from <a
   href="http://myhaley.com"> HaleyGroup </a> , free !!
Version: 0.1
Author: Asep Sufyan Tsauri
Author URI: http://www.tsauri28.myhaley.com/
*/

/* Style anda disini !!! */
? Halaman utama yang
  akan dipanggil awal
  oleh http
? Memanggil file struktur
  yang lain, seperti
  header, footer, dsb.
? Biasanya digunakan
  untuk menyimpan
  headline post
? Bagian `kepala¨ struktur wordpress
? Biasanya untuk menyimpan link ke style,
  script dsb
? Menyimpan widget
? Diintegrasikan (dikontrol)
  dengan function.php
?   `kaki¨ wordpress
? Menyimpan function untuk mengatur theme
? Paling umum untuk mengontrol sidebar.php
? Bagian detail post (hasil dari `read more´¨)
? Memanggil file2 lain seperti header, footer,
  dll (seperti index.php)
?   Sama fungsinya dengan single.php, hanya
    untuk page
?   Looping post
<?php while (have_posts()) : the_post(); ?>
?   Tampilkan Judul
<?php the_title(); ?>
?   Tampilkan hyperlink post
<?php the_permalink() ?>
?   Tampilkan content
<?php the_content(__(`selanjutnya´')); ?>
?   Menampilkan Kategori
<?php the_category(', ') ?>
?   Tampilkan post dalam kategori tertentu
<?php
$my_query = new
  WP_Query('category_name=Uncategorized&showposts=4');
  ?>

?   Costum Field
<?php
get_post_meta($post->ID,'image', true) )
?>
?   Wordpress.org
?   Wphacks.com
?   Webdesignerwall.com
?   Nettuts.com
?   dllllll;

More Related Content

Wordpess Hack

  • 2. ? Style.css ? Index.php ? Header.php ? Sidebar.php ? Footer.php ? Function.php ? Single.php ? Page.php
  • 3. ? Menempatkan style untuk theme ? Menyimpan data theme /* Theme Name: Muawanah Description: 2 Column, CSS, xHTML, JQuery. Download other from <a href="http://myhaley.com"> HaleyGroup </a> , free !! Version: 0.1 Author: Asep Sufyan Tsauri Author URI: http://www.tsauri28.myhaley.com/ */ /* Style anda disini !!! */
  • 4. ? Halaman utama yang akan dipanggil awal oleh http ? Memanggil file struktur yang lain, seperti header, footer, dsb. ? Biasanya digunakan untuk menyimpan headline post
  • 5. ? Bagian `kepala¨ struktur wordpress ? Biasanya untuk menyimpan link ke style, script dsb
  • 6. ? Menyimpan widget ? Diintegrasikan (dikontrol) dengan function.php
  • 7. ? `kaki¨ wordpress
  • 8. ? Menyimpan function untuk mengatur theme ? Paling umum untuk mengontrol sidebar.php
  • 9. ? Bagian detail post (hasil dari `read more´¨) ? Memanggil file2 lain seperti header, footer, dll (seperti index.php)
  • 10. ? Sama fungsinya dengan single.php, hanya untuk page
  • 11. ? Looping post <?php while (have_posts()) : the_post(); ?> ? Tampilkan Judul <?php the_title(); ?> ? Tampilkan hyperlink post <?php the_permalink() ?> ? Tampilkan content <?php the_content(__(`selanjutnya´')); ?> ? Menampilkan Kategori <?php the_category(', ') ?>
  • 12. ? Tampilkan post dalam kategori tertentu <?php $my_query = new WP_Query('category_name=Uncategorized&showposts=4'); ?> ? Costum Field <?php get_post_meta($post->ID,'image', true) ) ?>
  • 13. ? Wordpress.org ? Wphacks.com ? Webdesignerwall.com ? Nettuts.com ? dllllll;