This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // get repeater field data | |
| $repeater = get_field('home_news'); | |
| // vars | |
| $order = array(); | |
| // populate order | |
| foreach( $repeater as $i => $row ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- ACF Recent news --> | |
| <?php if( have_rows('home_news') ): ?> | |
| <div class="flexgrid_wrapper news-wrapper"> | |
| <?php while( have_rows('home_news') ): the_row(); | |
| // vars | |
| $date = get_sub_field('date', false, false); | |
| $date = new DateTime($date); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p class="flexgrid_author"> | |
| <?php $coauthors = get_coauthors(); ?> | |
| <?php foreach( $coauthors as $coauthor ): ?> | |
| <?php $userdata = get_userdata( $coauthor->ID ); ?> | |
| <strong> <?php echo $coauthor->display_name; ?></strong>, | |
| <?php echo get_the_author_meta( 'city', $coauthor->ID ); ?> <br> | |
| <?php endforeach; ?> | |
| </p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Include Coauthors | |
| add_filter( 'facetwp_facet_sources', function( $sources ) { | |
| if ( class_exists( 'coauthors_plus') && isset( $sources['taxonomies']['choices']['tax/author'] ) ) { | |
| $sources['co_authors'] = array( | |
| 'label' => 'Co-Authors', | |
| 'choices' => array( | |
| 'tax/author' => 'Authors' | |
| ) | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Get Facet to recognize CoAuthors | |
| add_filter( 'facetwp_facet_sources', function( $sources ) { | |
| if ( class_exists( 'coauthors_plus') && isset( $sources['taxonomies']['choices']['tax/author'] ) ) { | |
| $sources['co_authors'] = array( | |
| 'label' => 'Co-Authors', | |
| 'choices' => array( | |
| 'tax/author' => 'Authors' | |
| ) | |
| ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Add a title here!</title> | |
| <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Pacifico" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="the-wrapper"> | |
| <div class="the-logo"> | |
| Isabella The Mayor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Add a title here!</title> | |
| <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Pacifico" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="the-wrapper"> | |
| <div class="the-logo"> | |
| Isabella The Mayor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Pacifico" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="the-wrapper"> | |
| <div class="the-logo"> | |
| Isabella The Mayor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Local incidents within our city</title> | |
| <link href="https://fonts.googleapis.com/css?family=Taviraj:400,400i,600,600i" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="the-wrapper"> | |
| <div class="the-logo"> | |
| <img class="brian-logo" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/95802/brianuceta_thumbnail.png"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Local incidents within our city</title> | |
| <link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="the-wrapper"> | |
| <div class="the-logo"> | |
| <img class="brian-logo" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/95802/brianuceta_thumbnail.png"/> |
NewerOlder