• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP the_modified_date函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中the_modified_date函数的典型用法代码示例。如果您正苦于以下问题:PHP the_modified_date函数的具体用法?PHP the_modified_date怎么用?PHP the_modified_date使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了the_modified_date函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: lp_thumbnail_metabox

function lp_thumbnail_metabox()
{
    global $post;
    $template = get_post_meta($post->ID, 'lp-selected-template', true);
    $template = apply_filters('lp_selected_template', $template);
    $permalink = get_permalink($post->ID);
    $datetime = the_modified_date('YmjH', null, null, false);
    $permalink = $permalink . '?dt=' . $datetime;
    if (in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'))) {
        if (file_exists(LANDINGPAGES_UPLOADS_PATH . $template . '/thumbnail.png')) {
            $thumbnail = LANDINGPAGES_UPLOADS_URLPATH . $template . '/thumbnail.png';
        } else {
            $thumbnail = LANDINGPAGES_URLPATH . 'templates/' . $template . '/thumbnail.png';
        }
    } else {
        $thumbnail = 'http://s.wordpress.com/mshots/v1/' . urlencode(esc_url($permalink)) . '?w=250';
    }
    $permalink = apply_filters('lp_live_screenshot_url', $permalink);
    ?>
	<div >
		<div class="inside" style='margin-left:-8px;'>
			<table>
				<tr>
					<td>
						<?php 
    echo "<a href='{$permalink}' target='_blank' ><img src='{$thumbnail}' style='width:250px;height:250px;' title='" . __('Preview this theme', 'landing-pages') . " ,  ({$template})'></a>";
    ?>
					</td>
				</tr>
			</table>

		</div>
	</div>
	<?php 
}
开发者ID:m-godefroid76,项目名称:devrestofactory,代码行数:35,代码来源:module.metaboxes.php


示例2: download_date_function

function download_date_function($atts)
{
    $atts = shortcode_atts(array('id' => '', 'format' => 'Y/m/d \\a\\t g:i A', 'type' => ''), $atts, 'download_date');
    if ($atts['id'] != '') {
        $id = $atts['id'];
    } else {
        $id = get_the_ID();
    }
    if ($atts['type'] == 'modified') {
        $date = the_modified_date($atts['format'], '', '', false);
    } else {
        $date = the_date($atts['format'], '', '', false);
    }
    return $date;
}
开发者ID:Bento4Extend,项目名称:EDD-Download-Shortcodes,代码行数:15,代码来源:download_date.php


示例3: page_cache_key

  public static function page_cache_key($date=null) {
    $url = parse_url(get_permalink());
    $path = $url['path'];
    $path =  rtrim(substr($path, 1), '/');
    // replace '/' with '-'
    $path = preg_replace('[\/]', '__', $path);

    if ($path == '') $path = 'home';

    if ($date) {
      $date = date('Ymd_His', strtotime($date));
    } else {
      $date = the_modified_date('Ymd_His', '', '', false);
    }

    $path .= '__'.$date;
    return $path;   
  }
开发者ID:buraksahin59,项目名称:WordPress-FragmentCache,代码行数:18,代码来源:fragment_cache.php


示例4: soliloquy_custom_columns

 /**
  * Add data to the custom columns added to the Soliloquy post type.
  *
  * @since 1.0.0
  *
  * @global object $post The current post object
  * @param string $column The name of the custom column
  * @param int $post_id The current post ID
  */
 public function soliloquy_custom_columns($column, $post_id)
 {
     global $post;
     $post_id = absint($post_id);
     switch ($column) {
         case 'shortcode':
             echo '<code>[soliloquy id="' . $post_id . '"]</code>';
             break;
         case 'template':
             echo '<code>if ( function_exists( \'soliloquy_slider\' ) ) soliloquy_slider( \'' . $post_id . '\' );</code>';
             break;
         case 'images':
             $attachments = get_children(array('post_parent' => $post_id));
             echo count($attachments);
             break;
         case 'modified':
             the_modified_date();
             break;
     }
 }
开发者ID:paarthd,项目名称:gslvpa,代码行数:29,代码来源:Posttype.php


示例5: envira_custom_columns

 /**
  * Add data to the custom columns added to the Envira post type.
  *
  * @since 1.0.0
  *
  * @global object $post  The current post object
  * @param string $column The name of the custom column
  * @param int $post_id   The current post ID
  */
 public function envira_custom_columns($column, $post_id)
 {
     global $post;
     $post_id = absint($post_id);
     switch ($column) {
         case 'shortcode':
             echo '<code>[envira-gallery id="' . $post_id . '"]</code>';
             break;
         case 'template':
             echo '<code>if ( function_exists( \'envira_gallery\' ) ) { envira_gallery( \'' . $post_id . '\' ); }</code>';
             break;
         case 'images':
             $gallery_data = get_post_meta($post_id, '_eg_gallery_data', true);
             echo !empty($gallery_data['gallery']) ? count($gallery_data['gallery']) : 0;
             break;
         case 'modified':
             the_modified_date();
             break;
     }
 }
开发者ID:codeforpakistan,项目名称:PDMA-Emergency,代码行数:29,代码来源:posttype.php


示例6: post_class

post_class('list-item');
?>
>
	<a class="inner" href="<?php 
the_permalink();
?>
">
		<header class="list-item-header">
			<?php 
the_title('<h3 class="lit-item-title">', '</h3>');
?>
			<div cass="list-item-img" style="background-image:url(<?php 
echo $image_url[0];
?>
);"></div>
			<div class="list-item-meta">
				<span>
					<?php 
the_modified_date('d. M Y');
?>
				</span>
			</div>
		</header>
		<section class="list-item-excerpt">
			<?php 
the_excerpt();
?>
		</section>
	</a>
</li>
开发者ID:JeppeSigaard,项目名称:jeppe-wp-theme,代码行数:30,代码来源:list-item.php


示例7: wpdm_sitemap_xml

function wpdm_sitemap_xml()
{
    return;
    global $wpdb;
    $page = basename($_SERVER['REQUEST_URI']);
    if ($page == 'wpdmpro-sitemap.xml') {
        header('Content-type: text/xml');
        echo '<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="' . plugins_url('download-manager/css/sitemap-style.xml') . '"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
        $dls = get_posts("post_type=wpdmpro&posts_per_page=1000");
        foreach ($dls as $wpdm_package) {
            ?>
            <url>
                <loc><?php 
            echo get_permalink($wpdm_package->ID);
            ?>
</loc>
                <lastmod><?php 
            the_modified_date($wpdm_package->ID);
            ?>
</lastmod>
                <changefreq>weekly</changefreq>
                <priority>0.6</priority>
            </url>
        <?php 
        }
        ?>
        </urlset>

        <?php 
        die;
    }
}
开发者ID:jimrucinski,项目名称:Vine,代码行数:33,代码来源:functions.php


示例8: while

			<?php 
    /* Start the Loop */
    ?>
			<?php 
    while (have_posts()) {
        the_post();
        ?>
	<article>
		<header>
				<h1><?php 
        the_title();
        ?>
</h1>
				<p>Last Update: <?php 
        the_modified_date('F j, Y, h:i a T');
        ?>
</p>
		</header>
			<?php 
        hmc_featured_img($post->ID, 'alignleft');
        ?>
	
			<?php 
        the_content();
        ?>

	</article>
	
	<?php 
    }
开发者ID:hmcmathcomp,项目名称:wpdev-hmc-edu,代码行数:30,代码来源:content-single-emergency.php


示例9: bloginfo

<div id="footer-css">

<p><strong>&copy; <?php 
bloginfo('name');
?>
 &amp; its commenters</strong></p> 

<p><strong>Powered by</strong>: <a href="http://wordpress.org">WordPress</a> &#124; <strong>Theme</strong>: <a href="http://onethousandseas.org/scrumty/aabboo">Aabboo</a> &#124; <strong>Validation</strong>: <a href="http://wave.webaim.org/refer">Accessibility</a>, <a href="http://jigsaw.w3.org/css-validator/check?uri=referer">CSS</a>, <a href="http://validator.w3.org/check?uri=referer">XHTML</a></p>

<p><strong>Page last updated</strong>: <?php 
the_modified_date('j M Y');
?>
</p>

</div>

<?php 
wp_footer();
?>

</body>

</html>
开发者ID:jessim,项目名称:Aaron-Twackleworth,代码行数:23,代码来源:footer.php


示例10: recent_posts_list_block

function recent_posts_list_block($options)
{
    $mydirname = empty($options[0]) ? 'xpress' : $options[0];
    $this_template = empty($options[1]) ? 'db:' . $mydirname . '_recent_posts_list_block.html' : trim($options[1]);
    $disp_count = empty($options[2]) ? '10' : $options[2];
    $disp_red = empty($options[3]) ? '1' : $options[3];
    $disp_green = empty($options[4]) ? '7' : $options[4];
    $date_format = empty($options[5]) ? '' : $options[5];
    $time_format = empty($options[6]) ? '' : $options[6];
    $tag_select = $options[7];
    $cat_select = empty($options[8]) ? '0' : $options[8];
    $selected = explode(',', $cat_select);
    $mydirpath = get_xpress_dir_path();
    if (empty($date_format)) {
        $date_format = get_settings('date_format');
    }
    if (empty($time_format)) {
        $time_format = get_settings('time_format');
    }
    if (empty($tag_select)) {
        $tag_where = '';
    } else {
        $tag_where = "tag='{$tag_select}'&";
    }
    if (array_search(0, $selected) === 0) {
        $cat_select = 0;
    }
    $selected_author_id = xpress_selected_author_id('echo=0');
    if (!empty($selected_author_id)) {
        $author_where = "author={$selected_author_id}&";
    } else {
        $author_where = '';
    }
    global $wpdb, $wp_query;
    $block = array();
    $item_no = 0;
    if (!is_null($wpdb)) {
        $wp_query->in_the_loop = true;
        //for use the_tags() in multi lopp
        if ($cat_select) {
            $r = new WP_Query($author_where . $tag_where . "cat={$cat_select}&showposts={$disp_count}&what_to_show=posts&nopaging=0&post_status=publish");
        } else {
            $r = new WP_Query($author_where . $tag_where . "showposts={$disp_count}&what_to_show=posts&nopaging=0&post_status=publish");
        }
        while ($r->have_posts()) {
            $r->the_post();
            ob_start();
            the_ID();
            $post_id = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_title();
            $title = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_permalink();
            $permalink = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_author_posts_link();
            $author = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_category(' &bull; ');
            $category = ob_get_contents();
            ob_end_clean();
            if (function_exists('the_tags')) {
                ob_start();
                the_tags(__('Tags:', 'xpress') . ' ', ' &bull; ', '');
                $tags = ob_get_contents();
                ob_end_clean();
            } else {
                $tags = '';
            }
            ob_start();
            the_modified_date($date_format);
            $post_modified_date = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_modified_date($time_format);
            $post_modified_time = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_time($date_format);
            $post_date = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_time($time_format);
            $post_time = ob_get_contents();
            ob_end_clean();
            ob_start();
            comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)'));
            $comments_popup_link = ob_get_contents();
            ob_end_clean();
            $red_sec = $disp_red * 60 * 60 * 24;
            $green_sec = $disp_green * 60 * 60 * 24;
            ob_start();
            the_time('U');
            $check_time = ob_get_contents();
            ob_end_clean();
//.........这里部分代码省略.........
开发者ID:nouphet,项目名称:rata,代码行数:101,代码来源:recent_posts_list_block_theme.php


示例11: popular_posts_block


//.........这里部分代码省略.........
        $where = " WHERE {$post_tb}.post_type = 'post' AND {$post_tb}.post_status = 'publish'";
        //		if (!empty($selected_author_id)){
        //			$where  .= " AND ($post_tb.post_author = $selected_author_id) ";
        //			$where  .= " AND ($post_tb.post_author = 2) ";
        //		}
        if ($cat_select) {
            $where .= " AND ({$term_taxonomy}.term_id IN ({$cat_select}))";
        }
        if (!empty($tag_select)) {
            $tag_id_list = get_tag_id($tag_select);
            if (!empty($tag_id_list)) {
                $where .= " AND ({$term_taxonomy}.term_id IN ({$tag_id_list}))";
            }
        }
    } else {
        $from = " FROM ((";
        $from .= " {$post_tb} LEFT JOIN {$view_tb} ON {$post_tb}.ID = {$view_tb}.post_id)";
        $from .= " LEFT JOIN {$post2cat_tb} ON {$post_tb}.ID = {$post2cat_tb}.post_id)";
        $from .= " INNER JOIN {$user_tb} ON {$post_tb}.post_author = {$user_tb}.ID";
        $where = " WHERE ({$post_tb}.post_status = 'publish') AND  (UNIX_TIMESTAMP({$post_tb}.post_date) <= UNIX_TIMESTAMP())";
        if ($cat_select) {
            $where .= " AND ({$post2cat_tb}.category_id IN ({$cat_select}))";
        }
    }
    if ($show_month_range > 0) {
        $where .= " AND (UNIX_TIMESTAMP({$post_tb}.post_date) >= UNIX_TIMESTAMP(DATE_ADD(CURRENT_DATE, INTERVAL -{$show_month_range} month)))";
    }
    $order_limmit = " GROUP BY {$post_tb}.ID ORDER BY {$view_tb}.post_views DESC LIMIT 0, {$disp_count}";
    $sql = $select . $from . $where . $order_limmit;
    $populars = $wpdb->get_results($sql);
    foreach ($populars as $popular) {
        $wp_query->in_the_loop = true;
        //for use the_tags() in multi lopp
        $r = new WP_Query("p={$popular->ID}");
        if ($r->have_posts()) {
            $r->the_post();
            ob_start();
            the_ID();
            $post_id = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_title();
            $title = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_permalink();
            $permalink = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_author_posts_link();
            $author = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_category(' &bull; ');
            $category = ob_get_contents();
            ob_end_clean();
            if (function_exists('the_tags')) {
                ob_start();
                the_tags(__('Tags:', 'xpress') . ' ', ' &bull; ', '');
                $tags = ob_get_contents();
                ob_end_clean();
            } else {
                $tags = '';
            }
            ob_start();
            the_modified_date($date_format);
            $post_modified_date = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_modified_date($time_format);
            $post_modified_time = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_time($date_format);
            $post_date = ob_get_contents();
            ob_end_clean();
            ob_start();
            the_time($time_format);
            $post_time = ob_get_contents();
            ob_end_clean();
            ob_start();
            comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)'));
            $comments_popup_link = ob_get_contents();
            ob_end_clean();
            $post_title = '<a href="' . $permalink . '">' . $title . '</a>';
            $post_date_time = $post_date . ' ' . $post_time;
            $post_modified_date_time = $post_modified_date . ' ' . $post_modified_time;
            $trackback_url = trackback_url(false);
            $post_viwes = xpress_post_views_count('post_id=' . $post_id . '&format=' . __('Views :%d', 'xpress') . '&echo=0');
            //			if (empty($tags)) $tags = __('Not Tag');
            $row_data = array('post_id' => $post_id, 'post_title' => $post_title, 'post_date' => $post_date, 'post_time' => $post_time, 'post_date_time' => $post_date_time, 'post_modified_date' => $post_modified_date, 'post_modified_time' => $post_modified_time, 'post_modified_date_time' => $post_modified_date_time, 'post_author' => $author, 'post_category' => $category, 'post_tags' => $tags, 'post_views' => $post_viwes, 'comment_link' => $comments_popup_link, 'trackback_url' => $trackback_url);
            $block['contents']['item' . $item_no] = $row_data;
            $item_no++;
        }
    }
    // end of foreach
    $block['data_count'] = $item_no;
    //xml unserialise error
    return $block;
}
开发者ID:nouphet,项目名称:rata,代码行数:101,代码来源:popular_posts_block_theme.php


示例12: get_header

<?php

get_header();
?>

	<div class="guide pagecontainer">
		<div id="navbaranchor"></div>
		<section class="guidehead">
			<div class="guideheadcontent">
				<h1><?php 
the_title();
?>
</h1>
				<h5>Updated: <?php 
the_modified_date('F Y');
?>
</h5>
				<a href="<?php 
echo get_permalink($post->post_parent);
?>
">Back to Cache</a>
			</div>
		</section>

		<?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
	  
	      <?php 
开发者ID:shipinggs,项目名称:sutd-student-govt-website,代码行数:31,代码来源:page-parking-information.php


示例13: the_modified_date

        }
        ?>
				-->

				<header class="entry-header">
					<div class="bigDate">
						<div class="day"><?php 
        the_modified_date('j\\<\\s\\u\\p\\>S\\<\\/\\s\\u\\p\\>');
        ?>
</div>
						<div class="month"><?php 
        the_modified_date('F');
        ?>
</div>
						<div class="year"><?php 
        the_modified_date('Y');
        ?>
</div>
					</div>

					<h1 class="entry-title"><?php 
        the_title();
        ?>
</h1>
					<div class="meta">
						<!--
						<time datetime="<?php 
        echo date(DATE_W3C);
        ?>
" pubdate class="updated"><?php 
        the_time('F jS, Y');
开发者ID:adeka,项目名称:BraftonTheme,代码行数:31,代码来源:single.php


示例14: _e

        ?>
 <time class="published" datetime="<?php 
        echo $published_date;
        ?>
"><?php 
        echo $published_date;
        ?>
</time>
              &middot; <?php 
        _e('Updated', 'hueman');
        ?>
 <time class="updated" datetime="<?php 
        the_modified_date(get_option('date_format'));
        ?>
"><?php 
        the_modified_date(get_option('date_format'));
        ?>
</time>
          <?php 
    } else {
        ?>
              <time class="published" datetime="<?php 
        echo $published_date;
        ?>
"><?php 
        echo $published_date;
        ?>
</time>
          <?php 
    }
    ?>
开发者ID:giorgioriccardi,项目名称:hueman,代码行数:31,代码来源:single-author-date.php


示例15: while

		<?php 
    while (have_posts()) {
        the_post();
        ?>

			<?php 
        get_template_part('content', 'single');
        ?>
</div>

	<div id="content" class="site-content" role="main">
<div class="last-edit">Dernière modification : <?php 
        the_modified_author();
        ?>
 le <?php 
        the_modified_date('d/m/Y\\ à G\\hi');
        ?>
</div>
<footer>
<div class="entry-meta entry-footer">
</div>

	<!-- .entry-meta --></footer>

			<div class="share-links">
			<a style="margin-right:15px" target="_blank" title="Envoyer par mail" href="mailto:?subject=<?php 
        the_title_attribute();
        ?>
&body=<?php 
        the_permalink();
        ?>
开发者ID:Jocker666z,项目名称:hepouf,代码行数:31,代码来源:single.php


示例16: get_item_scope_meta

 /**
  * This method outputs the item scope for SINGLE templates. If you are looking for the modules @see td_module::get_item_scope_meta()
  * @updated 23 july 2015
  *  - if the module that uses this class is not on a single page, we use the @see td_module::get_item_scope_meta() this allows
  * us to output normal module item scope insted of no item scope like it was before this update
  * @updated 16 december 2015
  * - removed structured data from modules, now it displays only on single and it returns the current post data
  * - no more interference with the itemprop's coming from modules
  * - all single structured data is now gathered here
  * @return string
  */
 function get_item_scope_meta()
 {
     // don't display meta on pages
     if (!is_single()) {
         return '';
     }
     // determine publisher name - use author name if there's no blog name
     $td_publisher_name = get_bloginfo('name');
     if (empty($td_publisher_name)) {
         $td_publisher_name = esc_attr(get_the_author_meta('display_name', $this->post->post_author));
     }
     // determine publisher logo
     $td_publisher_logo = td_util::get_option('tds_logo_upload');
     $buffy = '';
     //the vampire slayer
     // author
     $buffy .= '<span style="display: none;" itemprop="author" itemscope itemtype="https://schema.org/Person">';
     $buffy .= '<meta itemprop="name" content="' . esc_attr(get_the_author_meta('display_name', $this->post->post_author)) . '">';
     $buffy .= '</span>';
     // datePublished
     $td_article_date_unix = get_the_time('U', $this->post->ID);
     $buffy .= '<meta itemprop="datePublished" content="' . date(DATE_W3C, $td_article_date_unix) . '">';
     // dateModified
     $buffy .= '<meta itemprop="dateModified" content="' . the_modified_date('c', '', '', false) . '">';
     // mainEntityOfPage
     $buffy .= '<meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="' . get_permalink($this->post->ID) . '"/>';
     // publisher
     $buffy .= '<span style="display: none;" itemprop="publisher" itemscope itemtype="https://schema.org/Organization">';
     $buffy .= '<span style="display: none;" itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">';
     $buffy .= '<meta itemprop="url" content="' . $td_publisher_logo . '">';
     $buffy .= '</span>';
     $buffy .= '<meta itemprop="name" content="' . $td_publisher_name . '">';
     $buffy .= '</span>';
     // headline @todo we may improve this one to use the subtitle or excerpt? - We could not find specs about what it should be.
     $buffy .= '<meta itemprop="headline " content="' . esc_attr($this->post->post_title) . '">';
     // featured image
     $td_image = array();
     if (!is_null($this->post_thumb_id)) {
         /**
          * from google documentation:
          * A URL, or list of URLs pointing to the representative image file(s). Images must be
          * at least 160x90 pixels and at most 1920x1080 pixels.
          * We recommend images in .jpg, .png, or. gif formats.
          * https://developers.google.com/structured-data/rich-snippets/articles
          */
         $td_image = wp_get_attachment_image_src($this->post_thumb_id, 'full');
     } else {
         // when the post has no image use the placeholder
         $td_image[0] = get_template_directory_uri() . '/images/no-thumb/td_meta_replacement.png';
         $td_image[1] = '1068';
         $td_image[2] = '580';
     }
     // ImageObject meta
     if (!empty($td_image[0])) {
         $buffy .= '<span style="display: none;" itemprop="image" itemscope itemtype="https://schema.org/ImageObject">';
         $buffy .= '<meta itemprop="url" content="' . $td_image[0] . '">';
         $buffy .= '<meta itemprop="width" content="' . $td_image[1] . '">';
         $buffy .= '<meta itemprop="height" content="' . $td_image[2] . '">';
         $buffy .= '</span>';
     }
     // if we have a review, we must add additional stuff
     if ($this->is_review) {
         // the item that is reviewd
         $buffy .= '<span style="display: none;" itemprop="itemReviewed" itemscope itemtype="https://schema.org/Thing">';
         $buffy .= '<meta itemprop="name " content = "' . $this->title_attribute . '">';
         $buffy .= '</span>';
         if (!empty($this->td_review['review'])) {
             $buffy .= '<meta itemprop="reviewBody" content = "' . esc_attr($this->td_review['review']) . '">';
         } else {
             //we have no review text :| get a excerpt for the about meta thing
             if ($this->post->post_excerpt != '') {
                 $td_post_excerpt = $this->post->post_excerpt;
             } else {
                 $td_post_excerpt = td_util::excerpt($this->post->post_content, 45);
             }
             $buffy .= '<meta itemprop="reviewBody" content = "' . esc_attr($td_post_excerpt) . '">';
         }
         // review rating
         $buffy .= '<span style="display: none;" class="td-page-meta" itemprop="reviewRating" itemscope itemtype="' . td_global::$http_or_https . '://schema.org/Rating">';
         $buffy .= '<meta itemprop="worstRating" content = "1">';
         $buffy .= '<meta itemprop="bestRating" content = "5">';
         $buffy .= '<meta itemprop="ratingValue" content = "' . td_review::calculate_total_stars($this->td_review) . '">';
         $buffy .= ' </span>';
     }
     return $buffy;
 }
开发者ID:luxifel,项目名称:Bionerd,代码行数:97,代码来源:td_module_single_base.php


示例17: geodir_action_details_micordata

/**
 * Output the posts microdata in the source code.
 *
 * This micordata is used by things like Google as a standard way of declaring things like telephone numbers etc.
 *
 * @global bool $preview True of on a preview page. False if not.
 * @global object $post The current post object.
 * @since 1.0.0
 * @package GeoDirectory
 */
function geodir_action_details_micordata()
{
    global $post, $preview;
    if (!$preview) {
        $c_url = geodir_curPageURL();
        $c_url = strtok($c_url, "#");
        $c_url = strtok($c_url, "?");
        ?>
        <span style="display:none;" class="url"><?php 
        echo $c_url;
        ?>
</span>
        <span class="updated" style="display:none;"><?php 
        the_modified_date('c');
        ?>
</span>
        <span class="vcard author" style="display:none;">
	<span class="fn"><?php 
        echo get_the_author();
        ?>
</span>
    <span class="org"><?php 
        the_title();
        ?>
</span>
    <span class="role"><?php 
        _e('Admin', GEODIRECTORY_TEXTDOMAIN);
        ?>
</span>
</span>
        <meta itemprop="name" content="<?php 
        the_title_attribute();
        ?>
"/>

        <meta itemprop="url" content="<?php 
        echo $c_url;
        ?>
"/>
        <?php 
        if ($post->geodir_contact) {
            echo '<meta itemprop="telephone" content="' . $post->geodir_contact . '" />';
        }
    }
}
开发者ID:jefferose,项目名称:geodirectory,代码行数:55,代码来源:geodirectory_template_actions.php


示例18: the_permalink

    ?>
</a><a href="#" onclick="copy_code('<?php 
    the_permalink();
    ?>
'); return false;"> +复制链接</a></li>
	<?php 
} else {
    ?>
	<li><strong>版权声明:</strong>本站原创文章,由<?php 
    the_author_posts_link('namefl');
    ?>
发表在<?php 
    the_category(', ');
    ?>
分类下,于<?php 
    the_modified_date('Y年m月d日');
    ?>
最后更新</li>
	<li><strong>转载请注明:</strong><a href="<?php 
    the_permalink();
    ?>
" rel="bookmark" title="本文固定链接 <?php 
    the_permalink();
    ?>
"><?php 
    the_title();
    ?>
 | <?php 
    bloginfo('name');
    ?>
</a><a href="#" onclick="copy_code('<?php 
开发者ID:beichengandnight,项目名称:daikuanzj,代码行数:31,代码来源:copyright.php


示例19: display_columns

 /**
  * Display column data
  * @param $columns
  * @return array
  */
 public static function display_columns($column)
 {
     global $post;
     if ($post->post_type != 'landing-page') {
         return;
     }
     switch ($column) {
         case 'ID':
             echo $post->ID;
             break;
         case 'thumbnail-lander':
             $template = get_post_meta($post->ID, 'lp-selected-template', true);
             $permalink = get_permalink($post->ID);
             $datetime = the_modified_date('YmjH', null, null, false);
             $permalink = $permalink = $permalink . '?dt=' . $datetime;
             if (in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'))) {
                 if (file_exists(LANDINGPAGES_UPLOADS_PATH . $template . '/thumbnail.png')) {
                     $thumbnail = LANDINGPAGES_UPLOADS_URLPATH . $template . '/thumbnail.png';
                 } else {
                     if (file_exists(LANDINGPAGES_UPLOADS_PATH . $template . '/thumbnail.jpg')) {
                         $thumbnail = LANDINGPAGES_UPLOADS_URLPATH . $template . '/thumbnail.jpg';
                     } else {
                         $thumbnail = LANDINGPAGES_URLPATH . 'templates/' . $template . '/thumbnail.png';
                     }
                 }
             } else {
                 $thumbnail = 'http://s.wordpress.com/mshots/v1/' . urlencode(esc_url($permalink)) . '?w=140';
             }
             echo "<a title='" . __('Click to Preview this variation', 'landing-pages') . "' class='thickbox' href='" . $permalink . "?lp-variation-id=0&iframe_window=on&post_id=" . $post->ID . "&TB_iframe=true&width=640&height=703' target='_blank'><img src='" . $thumbnail . "' style='width:155px;height:110px;' title='Click to Preview'></a>";
             break;
         case "stats":
             self::show_stats();
             break;
         case "impressions":
             echo self::show_aggregated_stats("impressions");
             break;
         case "actions":
             echo self::show_aggregated_stats("actions");
             break;
         case "cr":
             echo self::show_aggregated_stats("cr") . "%";
             break;
         case "template":
             $template_used = Landing_Pages_Variations::get_current_template($post->ID);
             echo $template_used;
             break;
     }
 }
开发者ID:julsquintanilla,项目名称:landing-pages,代码行数:53,代码来源:class.post-type.landing-page.php


示例20: get_the_permalink

				
					<?php 
    /* <a href="<?php echo get_the_permalink(); ?>"><img src="<?php echo $image_attributes[0]; ?>" width="100%" /></a> */
    ?>
				</div>
				<!--/.image-video-->
				<div class="content">
					<h3><a href="<?php 
    echo get_the_permalink();
    ?>
"><?php 
    echo get_title(25);
    ?>
</a></h3>
					<p class="updated"><?php 
    the_modified_date('M j, Y');
    ?>
</p>
					<p><?php 
    echo get_excerpt(80);
    ?>
</p>
				</div>
				<!--/.content-->
			</article>
			<?php 
    //endwhile; wp_reset_postdata();
}
wp_reset_postdata();
?>
			<a href="#" id="btn-show-more">Show More</a>
开发者ID:javed2015,项目名称:WindowsDefender,代码行数:30,代码来源:category.php



注:本文中的the_modified_date函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP the_modified_time函数代码示例发布时间:2022-05-23
下一篇:
PHP the_meta函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap