コード例 #1
0
ファイル: search.php プロジェクト: jmruas/zenphoto
        ?>
 <small><?php 
        printZDSearchShowMoreLink("pages", $number_to_show);
        ?>
</small></h3>
							<ul class="searchresults">
								<?php 
        while (next_page()) {
            $c++;
            ?>
									<li<?php 
            printZDToggleClass('pages', $c, $number_to_show);
            ?>
>
										<h4><?php 
            printPageURL();
            ?>
</h4>
										<p class="zenpageexcerpt"><?php 
            echo shortenContent(getBare(getPageContent()), 80, getOption("zenpage_textshorten_indicator"));
            ?>
</p>
									</li>
									<?php 
        }
        ?>
							</ul>
							<?php 
    }
    if ($numnews > 0 && ZP_NEWS_ENABLED) {
        $number_to_show = 5;
コード例 #2
0
/**
 * @deprecated
 * @since 1.4.6
 */
function printPageLinkURL($linktext, $titlelink, $prev = '', $next = '', $class = NULL)
{
    deprecated_functions::notify(gettext('use printPageURL()'));
    printPageURL($linktext, $titlelink, $prev, $next, $class);
}