高级自定义字段插件-图像不显示

时间:2011-12-05 作者:tobeeornot

我使用ACF纯粹是为了让用户可以将图像上传到预定义的位置,并相应地分配页面规则。WP后端的一切似乎都很好,三幅图像上传到了各个字段。然而,在字体端,除了空白框之外,没有任何内容显示在图像应该显示的位置。查看WP输出的源,只有空白代码:

<img src="" class="middle" alt="image1"/>
这是我正在使用的循环:

<?php query_posts("posts_per_page=1&post_type=page&page_id=168"); if (have_posts()) :  
while ( have_posts() ) :   
the_post(); ?>
<!--If you want to refer to the child of parent page, use "post_parent=" -->
<li>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<img src="<?php the_field(\'image_1\'); ?>" class="middle" alt="image1"/>
<a href="<?php the_permalink(); ?>" class="button">View More</a>
</li>
 <?php endwhile; ?>
      <!-- post navigation -->
    <?php else: ?>
      <!-- no posts found -->
    <?php endif; ?>
    <?php wp_reset_query(); ?>

1 个回复
SO网友:tobeeornot

我只需要指定主页id函数:

<img src="<?php the_field(\'image_2\', \'245\'); ?>" class="middle" alt="image2"/>

结束

相关推荐

Integrating plugins in themes

我找不到讨论这个的帖子,所以开始这篇。我目前正在为3.1+开发一个相当复杂的主题,我的意思是,除了样式和常规的前端功能之外,我还在主题的核心包括后端和前端的插件。因此,为了使这一点更有条理,我将其分为三个问题:集成插件是一种常见的做法吗</自动更新主题/插件有什么影响/复杂之处</在不破坏现有功能的情况下,包含每个插件的最佳方式是什么

高级自定义字段插件-图像不显示 - 小码农CODE - 行之有效找到问题解决它

高级自定义字段插件-图像不显示

时间:2011-12-05 作者:tobeeornot

我使用ACF纯粹是为了让用户可以将图像上传到预定义的位置,并相应地分配页面规则。WP后端的一切似乎都很好,三幅图像上传到了各个字段。然而,在字体端,除了空白框之外,没有任何内容显示在图像应该显示的位置。查看WP输出的源,只有空白代码:

<img src="" class="middle" alt="image1"/>
这是我正在使用的循环:

<?php query_posts("posts_per_page=1&post_type=page&page_id=168"); if (have_posts()) :  
while ( have_posts() ) :   
the_post(); ?>
<!--If you want to refer to the child of parent page, use "post_parent=" -->
<li>
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<img src="<?php the_field(\'image_1\'); ?>" class="middle" alt="image1"/>
<a href="<?php the_permalink(); ?>" class="button">View More</a>
</li>
 <?php endwhile; ?>
      <!-- post navigation -->
    <?php else: ?>
      <!-- no posts found -->
    <?php endif; ?>
    <?php wp_reset_query(); ?>

1 个回复
SO网友:tobeeornot

我只需要指定主页id函数:

<img src="<?php the_field(\'image_2\', \'245\'); ?>" class="middle" alt="image2"/>

相关推荐

插件放置在/wp-content/plugins内的文件夹中时不保存值

我得到了WordPRess插件的以下代码,它在每个页面/后期编辑屏幕上添加了两个自定义输入。然后将这些值保存并输出到前端页面的标题中。如果代码位于内部,则可以正常工作。php文件并直接放入“wp内容/插件”。然而,如果我把它放在插件(如“wp-content/plugins/myplugin”)中自己的文件夹中,那么在通过编辑屏幕保存帖子/页面时,输入字段不会保存。此外,它不会向前端页面html标题部分输出任何内容。这似乎是一个被放弃的项目,所以我无法与原始开发人员一起制定解决方案。然而,代码中的某些内容