Wordpress ile ilgili bir takım kodlar işimizi kolaylaştıracağını düşündüğüm için bu konuyu paylaşıyorum.Wordpress kurulu sitesi olan arkadaşların çok işine yarıyacak bir konu olduğu için Kodları mutlaka doğru algılamalı ve gerekli yerlerde kullanılmalıdır.Konu ile ilgili kodlara ulaşmak için yazının devamına bakınız.
Sitenin ismini gösterir:
1
| <?php bloginfo( 'name' ); ?> |
1
| <?php bloginfo( 'description' ); ?> |
1
| <?php bloginfo( 'url' ); ?> |
1
| <?php the_title(); ?> |
1
| <?php bloginfo( 'stylesheet_url' ); ?> |
1
| <?php bloginfo( 'template_url' ); ?> |
1
| <?php bloginfo( 'version' ); ?> |
1
| <?php bloginfo( 'atom_url' ); ?> |
1
| <?php bloginfo( 'rss2_url' ); ?> |
1
| <?php bloginfo( 'html_type' ); ?> |
1
| <?php bloginfo( 'charset' ); ?> |
1
| <?php if (have_posts()) : ?> |
1
| <?php while (have_posts()) : the_post(); ?> |
1
| <?php endwhile ; ?> |
1
| <?php endif ; ?> |
1
| <?php get_header(); ?> |
1
| <?php get_sidebar(); ?> |
1
| <?php get_footer(); ?> |
1
| <?php get_calendar(); ?> |
1
| <?php wp_get_archives(); ?> |
1
| <?php next_post_link( '%link' ); ?> |
1
| <?php previous_post_link( '%link' ); ?> |
1
| <?php wp_list_cats(); ?> |
1
| <?php wp_list_pages(); ?> |
1
| <?php comments_template(); ?> |
1
| <?php edit_post_link(); ?> |
1
| <?php the_ID(); ?> |
1
| <?php the_author(); ?> |
1
| <?php the_category( ', ' ); ?> |
1
| <?php the_permalink(); ?> |
1
| <?php comments_popup_link(); ?> |
1
| <?php the_time( 'j F Y' ); ?> |
Hiç yorum yok:
Yorum Gönder