Exemplo n.º 1
0
/**
 * Display the title for the current featured post, use alt title if it exists.
 */
function the_intelliwidget_title($custom = 1)
{
    echo get_the_intelliwidget_title($custom);
}
Exemplo n.º 2
0
 * @package IntelliWidget
 * @subpackage templates
 * @author Joe Cooper
 * @copyright CASES 
 * @access public
 */
?>
<div class="relprog-title">Related Programs
    <div class="relprog-line"></div>
</div>
<ul class="relprog-list">
<?php 
if ($selected->have_posts()) {
    while ($selected->have_posts()) {
        $selected->the_post();
        $ohbrother = get_the_intelliwidget_title();
        ?>
    <li><a href="<?php 
        the_intelliwidget_url();
        ?>
">
    <?php 
        echo $ohbrother;
        ?>
</a>
  </li>
<?php 
    }
}
?>
</ul>
 function the_intelliwidget_title()
 {
     echo get_the_intelliwidget_title();
 }