Skip to content

Instantly share code, notes, and snippets.

@farinspace
Created February 20, 2016 20:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farinspace/657feb27580e7b2c0222 to your computer and use it in GitHub Desktop.
Save farinspace/657feb27580e7b2c0222 to your computer and use it in GitHub Desktop.
Noon Plugin "nooz_shortcode" filter, PHP template example.
<?php if ( $data['items'] ) { ?>
<div>
<ul>
<?php foreach( $data['items'] as $item ) { ?>
<li>
<time datetime="<?php echo $item['post_date']; ?>"><?php echo $item['post_date_formatted']; ?></time>
<h2>
<a href="<?php echo $item['link']; ?>"><?php echo $item['title']; ?></a>
</h2>
<p><?php echo $item['source']; ?></p>
<?php if ( $item['image'] ) { ?>
<p>
<a href="<?php echo $item['link']; ?>">
<img src="<?php echo $item['image']; ?>" alt="<?php echo $item['title']; ?>">
</a>
</p>
<?php } ?>
<p><?php echo $item['excerpt']; ?></p>
</li>
<?php } ?>
</ul>
</div>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment