Exemplo n.º 1
0
the_post();
?>

<article class="container home">
  <div class="page-container">
    <div class="page-title">
      <h3>Welcome To</h3>
      <h2><?php 
the_title();
?>
</h2>
    </div>
    <div class="row">
      <section>
         <?php 
echo do_shortcodes('[eme_events limit=100]');
?>
      </section>
      <section class="left">
        <div class="rte">
          <?php 
the_content();
?>
        </div>
      </section>
      <aside class="right">
        <div class="bernie-face">
          <img src="https://votesmart.org/canphoto/27110_lg.jpg" />
        </div>
        <div class="quote">
          <p>
Exemplo n.º 2
0
function go_admin_only_content_function($atts, $content = null)
{
    if (is_admin()) {
        return '<div id="admin-only-content">' . do_shortcodes($content) . '</div>';
    } else {
        return '';
    }
}