本文整理汇总了PHP中printNewsContent函数的典型用法代码示例。如果您正苦于以下问题:PHP printNewsContent函数的具体用法?PHP printNewsContent怎么用?PHP printNewsContent使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了printNewsContent函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
while (next_news()) {
?>
<div class="news-truncate clearfix">
<h3><?php
printNewsURL();
?>
</h3>
<div class="newsarticlecredit">
<?php
printNewsDate();
printNewsCategories(', ', ' | ', 'hor-list');
?>
</div>
<?php
printNewsContent();
?>
</div>
<?php
}
?>
</div>
<div class="pagination-news clearfix">
<?php
printNewsPageListWithNav(' » ', ' « ', true, 'clearfix');
?>
</div>
<?php
示例2: commonNewsLoop
function commonNewsLoop($paged)
{
$newstypes = array('album' => gettext('album'), 'image' => gettext('image'), 'video' => gettext('video'), 'news' => gettext('news'));
while (next_news()) {
$newstypedisplay = gettext('news');
if (stickyNews()) {
$newstypedisplay .= ' <small><em>' . gettext('sticky') . '</em></small>';
}
?>
<div class="newsarticle<?php
if (stickyNews()) {
echo ' sticky';
}
?>
">
<h3><?php
printNewsURL();
echo " <span class='newstype'>[" . $newstypedisplay . "]</span>";
?>
</h3>
<div class="newsarticlecredit">
<span class="newsarticlecredit-left">
<?php
$count = @call_user_func('getCommentCount');
$cat = getNewsCategories();
printNewsDate();
if ($count > 0) {
echo ' | ';
printf(gettext("Comments: %d"), $count);
}
?>
</span>
<?php
if (!empty($cat)) {
echo ' | ';
printNewsCategories(", ", gettext("Categories: "), "newscategories");
}
?>
</div> <!-- newsarticlecredit -->
<?php
printCodeblock(1);
?>
<?php
printNewsContent();
?>
<?php
printCodeblock(2);
?>
<br class="clearall" />
</div>
<?php
}
if ($paged) {
printNewsPageListWithNav(gettext('next »'), gettext('« prev'), true, 'pagelist', true);
}
}
示例3: newsListDisplay
/**
* Displays a list of all news in zenphoto
*
*/
function newsListDisplay()
{
while (next_news()) {
?>
<div class="newslist_article">
<div class="newslist_title">
<span class="italic date_news"><?php
printNewsDate();
?>
</span>
<h4><?php
printNewsURL();
?>
</h4>
<div class="newslist_detail">
<div class="italic newslist_type">
<?php
$cat = getNewsCategories();
if (!empty($cat)) {
printNewsCategories(", ", gettext("Categories: "), "newslist_categories");
}
?>
</div>
</div>
</div>
<div class="newslist_content">
<?php
printCodeblock(1);
?>
<?php
printNewsContent();
?>
<?php
printCodeblock(2);
?>
<?php
if (getNewsReadMore()) {
?>
<p class="italic newslist_readmore">
<?php
$readmore = getNewsReadMore($readmore);
if (!empty($readmore)) {
$newsurl = getNewsURL();
echo "<a href='" . $newsurl . "' title=\"" . getBareNewsTitle() . "\">" . html_encode($readmore) . "</a>";
}
?>
</p>
<?php
}
?>
</div>
</div>
<?php
}
}
示例4: commonNewsLoop
function commonNewsLoop($paged)
{
$newstypes = array('album' => gettext('album'), 'image' => gettext('image'), 'video' => gettext('video'), 'news' => gettext('news'));
while (next_news()) {
$newstype = getNewsType();
$newstypedisplay = $newstypes[$newstype];
if (stickyNews()) {
$newstypedisplay .= ' <small><em>' . gettext('sticky') . '</em></small>';
}
?>
<div class="newsarticle<?php
if (stickyNews()) {
echo ' sticky';
}
?>
">
<h3><?php
printNewsTitleLink();
echo " <span class='newstype'>[" . $newstypedisplay . "]</span>";
?>
</h3>
<div class="newsarticlecredit">
<span class="newsarticlecredit-left">
<?php
$count = getCommentCount();
$cat = getNewsCategories();
printNewsDate();
if ($count > 0) {
echo ' | ';
printf(gettext("Comments: %d"), $count);
}
?>
</span>
<?php
if (is_GalleryNewsType()) {
echo ' | ' . gettext("Album:") . " <a href='" . getNewsAlbumURL() . "' title='" . getBareNewsAlbumTitle() . "'>" . getNewsAlbumTitle() . "</a>";
} else {
if (!empty($cat) && !in_context(ZP_ZENPAGE_NEWS_CATEGORY)) {
echo ' | ';
printNewsCategories(", ", gettext("Categories: "), "newscategories");
}
}
?>
</div> <!-- newsarticlecredit -->
<br clear="all" />
<?php
printCodeblock(1);
?>
<?php
printNewsContent();
?>
<?php
printCodeblock(2);
?>
<br clear="all" />
</div>
<?php
}
if ($paged) {
printNewsPageListWithNav(gettext('next »'), gettext('« prev'), true, 'pagelist', true);
}
}