<? PHP language_attributes ();?> - Odaberite jezik ljuske.
1 |
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
<? PHP bloginfo ('stylesheet_url');?> - Put do datoteke style.css
1 |
<link rel="stylesheet" href="/<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> |
<? PHP bloginfo ('ime');?> - Ime bloga.
<? PHP wp_title('Привет', true, 'left'); ?> -
1 |
//1 - строчка |
<? PHP bloginfo ('stylesheet_directory');?> - Put u predložak.
1 |
<?php bloginfo('stylesheet_directory'); ?> |
<? PHP bloginfo ('html_type');?> - Tip HTML datoteku.
<? PHP bloginfo ("charset');?> - Kodiranje.
1 |
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> |
<? PHP bloginfo ('opis');?> - Opis bloga.
1 |
<div class="description"><?php bloginfo('description'); ?> |
<? PHP jeka get_option (dom');?> - Link na početnu stranicu.
1 |
<a href="/<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> |
post_class () - Dobiti klasa post.
<? PHP the_ID ();?> - Get ID post stranici.
1 |
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> |
1 |
<?php if (have_posts()) : ?> |
<? PHP the_permalink ()?> - Link
1 |
<?php the_tags( '<p>' . __('Tags:', 'kubrick') . ' ', ', ', '</p>'); ?> - выводим теги под стаьей
|
<? PHP the_title ();?> - Naziv materijala.
1 |
<a href="/<?php the_permalink() ?>"><?php the_title(); ?></a> |
<? PHP the_author ()?> - Autor materijala.
<? PHP the_time (__(' F JS, Y ',' Kubrick'))?> - Vrijeme pisanja.
1 |
<small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small> |
<? PHP the_content('Прочитать остальную часть записи »'); ?> - Prikaz sadržaja.
WordPress (FAQ)




