Compare commits
2 Commits
01beafd04d
...
42927ccbf9
Author | SHA1 | Date |
---|---|---|
jorge | 42927ccbf9 | |
jorge | 39ff8f321f |
|
@ -42,8 +42,11 @@ get_header();
|
||||||
endif;
|
endif;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php ofisuport_display_faqs_labels(); ?>
|
<?php //if( in_category('faq') ) : ?>
|
||||||
<content class="archive-posts <?php ofisuport_class_posttype(); ?>">
|
<?php ofisuport_display_faqs_labels(); ?>
|
||||||
|
<?php //endif; //end if is_category faq ?>
|
||||||
|
|
||||||
|
<content class="archive-posts <?php ofisuport_class_posttype(); ?>">
|
||||||
<?php
|
<?php
|
||||||
// https://developer.wordpress.org/reference/functions/get_posts/
|
// https://developer.wordpress.org/reference/functions/get_posts/
|
||||||
// https://www.advancedcustomfields.com/resources/true-false/
|
// https://www.advancedcustomfields.com/resources/true-false/
|
||||||
|
@ -51,7 +54,7 @@ get_header();
|
||||||
$the_query_faq = new WP_Query(
|
$the_query_faq = new WP_Query(
|
||||||
array(
|
array(
|
||||||
'post_type' => 'post',
|
'post_type' => 'post',
|
||||||
'category' => 'faq',
|
'category_name' => 'faq',
|
||||||
'post_per_page' => '8'
|
'post_per_page' => '8'
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
?>
|
?>
|
||||||
<div class="entry-meta">
|
<div class="entry-meta">
|
||||||
<?php
|
<?php
|
||||||
|
ofisuport_display_faqs_labels();
|
||||||
//ofisuport_posted_on();
|
//ofisuport_posted_on();
|
||||||
//ofisuport_posted_by();
|
//ofisuport_posted_by();
|
||||||
?>
|
?>
|
||||||
|
@ -53,6 +54,6 @@
|
||||||
</div><!-- .entry-content -->
|
</div><!-- .entry-content -->
|
||||||
|
|
||||||
<footer class="entry-footer">
|
<footer class="entry-footer">
|
||||||
<?php ofisuport_entry_footer(); ?>
|
<?php //ofisuport_entry_footer(); ?>
|
||||||
</footer><!-- .entry-footer -->
|
</footer><!-- .entry-footer -->
|
||||||
</article><!-- #post-<?php the_ID(); ?> -->
|
</article><!-- #post-<?php the_ID(); ?> -->
|
||||||
|
|
|
@ -36,7 +36,9 @@
|
||||||
</ul>
|
</ul>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php if( get_field('os_fund_call') ): ?>
|
||||||
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_call') ); ?>
|
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_call') ); ?>
|
||||||
|
<?php endif; ?>
|
||||||
</aside>
|
</aside>
|
||||||
<nav class="more-link">
|
<nav class="more-link">
|
||||||
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark" class="button button-more">
|
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark" class="button button-more">
|
||||||
|
|
Loading…
Reference in New Issue