1
我在index.php中的代碼有什麼問題?或者可能不在我的代碼中?我從頭開始創建一個新主題。文件的方向是正確的。主題被激活。但文字沒有顯示出來。在WordPress的PHP代碼不工作
<?php
get_header();
if(have_posts()) :
while (have_posts()) : the_post(); ?>
<h2>hello</h2>
<?php the_content(); ?>
<?php endwhile;
else :
echo '<p>No content found</p>'
endif;
get_footer();
?>
非常感謝! – Baivaras