本文整理汇总了PHP中presscore_post_edit_link函数的典型用法代码示例。如果您正苦于以下问题:PHP presscore_post_edit_link函数的具体用法?PHP presscore_post_edit_link怎么用?PHP presscore_post_edit_link使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了presscore_post_edit_link函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: the_title
?>
" rel="bookmark"><?php
the_title();
?>
</a>
</h2>
<?php
echo presscore_get_posted_on();
?>
<?php
the_excerpt();
?>
<a href="javascript: void(0);" class="trigger-first-post-pp" rel="nofollow"><?php
_ex('Details', 'details button', 'the7mk2');
?>
</a>
<?php
echo presscore_post_edit_link();
?>
</div>
</article><!-- #post-<?php
the_ID();
?>
-->
<?php
do_action('presscore_after_post');
示例2: presscore_mod_albums_get_photo_description
/**
* @return string
*/
function presscore_mod_albums_get_photo_description()
{
$html = '';
$config = presscore_config();
if (presscore_image_title_enabled(get_the_ID()) && $config->get('show_titles') && ($title = get_the_title())) {
$html .= sprintf('<h3 class="entry-title"><a class="dt-trigger-first-mfp" href="%s" title="%s" rel="bookmark">%s</a></h3>', get_permalink(), the_title_attribute('echo=0'), $title);
}
if ($config->get('show_excerpts')) {
$html .= wpautop(get_the_content());
}
if ($html) {
$html .= presscore_post_edit_link();
}
return $html;
}
示例3: presscore_post_buttons
/**
* PressCore post Details and Edit buttons in <p> tag.
*/
function presscore_post_buttons()
{
echo presscore_post_details_link() . presscore_post_edit_link();
}
示例4: presscore_project_get_preview_content
/**
* @return string
*/
function presscore_project_get_preview_content()
{
$config = presscore_config();
$html = '';
// title
if ($config->get('show_titles') && ($title = get_the_title())) {
$html .= sprintf('<h3 class="entry-title"><a href="%s" title="%s" rel="bookmark">%s</a></h3>', get_permalink(), the_title_attribute('echo=0'), $title);
}
// description
if ($config->get('show_excerpts')) {
$html .= apply_filters('the_excerpt', get_the_excerpt());
}
// details button
if ($config->get('post.preview.buttons.details.enabled')) {
$html .= '<p>' . presscore_post_details_link() . '</p>';
}
// post meta
$html .= presscore_get_posted_on();
// edit link
if ($html) {
$html .= presscore_post_edit_link();
}
return $html;
}