wordpress[워드프레스] - 001
[ 워드프레스(wordpress) - 001 ]
PHP 문법
<?php echo 2 + 2;
$myname = 'Brad';
?>
<h1>This page is all about <?php echo $myname ?></h1>
<h2>All About <?php echo $myname ?></h2>
[ theme image 설정 ]
이미지 폴더 : wordpress\app\public\wp-content\themes\fictional-university-theme파일명 : screenshot.png(반드시 이 이름을 써야 함. 1200 x 900 해상도가 적당)
<?php
function greet($name, $color) {
echo "<p>hi my name is $name and my favorite color is $color.</P>";
}
greet('John', 'blue');
greet('Jane', 'green');
?>
<h1><?php bloginfo('name'); ?></h1>
<p><?php bloginfo('description') ?></p>
Array와 반복문
<?php
$names = array('Brad', 'John', 'Jane', 'kim') ;
$count = 0;
while($count < count($names)) {
echo"<li>Hi, my name is $names[$count]</li>";
$count++;
}
?>
<p>Hi, my name is <?php echo $names[0]; ?>.</p>
<p>Hi, my name is <?php echo $names[1]; ?>.</p>
<p>Hi, my name is <?php echo $names[2]; ?>.</p>
while문과 html 태그를 이용하여 index.php에 제목과 본문 표시해보기
<?php
while(have_posts()) {
the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<hr>
<?php }
?>
댓글남기기