我有空白内容,其中act画廊代码的内容是。我认为代码有问题。
<
?php
/*
Template Name: Images scroll
*/
?>
<?php get_header(); ?>
<div id="wrapper" class="wrapper-scroll">
<div class="content">
<?php
if (is_page_template( \'index.php\' ) ) {
if (is_page( \'home\' )) {
$jennifergallery=\'gallery_home\';
};
if (is_page( \'people\' )) {
$jennifergallery=\'gallery_people\';
};
if (is_page( \'stories\' )) {
$jennifergallery=\'gallery_stories\';
};
};
$images = get_field(\'$jennifergallery\');
if( $images ): ?>
<?php foreach( $images as $image ): ?>
<div class="section">
<img src="<?php echo $image[\'sizes\'][\'large\']; ?>" alt="<?php echo $image[\'alt\']; ?>" />
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>
以及
this 是指向wp测试站点的链接。它应该显示一些水平滚动的图像。这是
link 至静态试验现场。
任何帮助都将不胜感激:-]