當前位置: 首頁>>代碼示例>>PHP>>正文


PHP presscore_post_edit_link函數代碼示例

本文整理匯總了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');
開發者ID:10asfar,項目名稱:WordPress-the7-theme-demo-,代碼行數:31,代碼來源:content-archive-gallery.php

示例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;
 }
開發者ID:10asfar,項目名稱:WordPress-the7-theme-demo-,代碼行數:18,代碼來源:mod-albums-helpers.php

示例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();
 }
開發者ID:10asfar,項目名稱:WordPress-the7-theme-demo-,代碼行數:7,代碼來源:blog-helpers.php

示例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;
 }
開發者ID:10asfar,項目名稱:WordPress-the7-theme-demo-,代碼行數:27,代碼來源:mod-portfolio-helpers.php


注:本文中的presscore_post_edit_link函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。