我正在使用wordpress灵活的内容处理acf自定义字段。我想制作一些灵活的内容,所以我使用了我在acf网站上找到的代码。 然后我在acf上创建了字段,但没有出现。
• Here is what I made on acf : the name of the fexible content
• and here are the sub fields
这只是文本区域和普通文本标题
•这是我的代码
<?php /* Template Name: ateliers */ ?>
<?php get_header(); ?>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<?php
// check if the flexible content field has rows of data
if( have_rows('ateliers') ):
// loop through the rows of data
while ( have_rows('atelieratelier') ) : the_row();
if( get_row_layout() == 'content' ):
the_sub_field('atelier_01');
elseif( get_row_layout() == 'content' ):
the_sub_field('texte_atelier');
endif;
endwhile;
else :
// no layouts found
endif;
?>
<?php endwhile; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</div>
</body>
</html>
感谢您的帮助
答案 0 :(得分:0)
我要继续为这一个写一个正确的答案......
行:override func viewDidLoad() {
super.viewDidLoad()
checkForScrollViewInView(self.view)
self.tableView.delegate = self
self.tableView.dataSource = self
self.tableView.scrollsToTop = true
}
func checkForScrollViewInView(view:UIView) {
for subview in view.subviews as [UIView] {
if subview.isKindOfClass(UITextView) {
(subview as! UITextView).scrollsToTop = false
}
if subview.isKindOfClass(UIScrollView) {
(subview as! UIScrollView).scrollsToTop = false
}
if subview.isKindOfClass(UITableView) {
(subview as! UITableView).scrollsToTop = false
}
if (subview.subviews.count > 0) {
self.checkForScrollViewInView(subview)
}
}
}
字段:ateliers
和atelier_01
布局:texte_atelier
你的if / while应该都是行。
atelieratelier