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


PHP wpsc_obtain_the_title函數代碼示例

本文整理匯總了PHP中wpsc_obtain_the_title函數的典型用法代碼示例。如果您正苦於以下問題:PHP wpsc_obtain_the_title函數的具體用法?PHP wpsc_obtain_the_title怎麽用?PHP wpsc_obtain_the_title使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了wpsc_obtain_the_title函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: wpsc_replace_bloginfo_title

function wpsc_replace_bloginfo_title($input, $show)
{
    global $wpdb, $wp_query;
    if ($show == 'description') {
        $output = wpsc_obtain_the_title();
        if ($output != null) {
            return $output;
        }
    }
    return $input;
}
開發者ID:papayalabs,項目名稱:htdocs,代碼行數:11,代碼來源:display.functions.php

示例2: wpsc_post_title_seo

/**
 * Deprecated function
 *
 * @deprecated 3.8.9
 */
function wpsc_post_title_seo($title)
{
    _wpsc_deprecated_function(__FUNCTION__, '3.8.9');
    global $wpdb, $page_id, $wp_query;
    $new_title = wpsc_obtain_the_title();
    if ($new_title != '') {
        $title = $new_title;
    }
    return esc_html($title);
}
開發者ID:AngryBird3,項目名稱:WP-e-Commerce,代碼行數:15,代碼來源:wpsc-deprecated.php

示例3: wpsc_change_aioseop_home_title

 function wpsc_change_aioseop_home_title($title)
 {
     global $aiosp, $aioseop_options;
     if (get_class($aiosp) == 'All_in_One_SEO_Pack' && $aiosp->is_static_front_page()) {
         $aiosp_home_title = $aiosp->internationalize($aioseop_options['aiosp_home_title']);
         $new_title = wpsc_obtain_the_title();
         if ($new_title != '') {
             $title = str_replace($aiosp_home_title, $new_title, $title);
         }
     }
     return $title;
 }
開發者ID:BGCX261,項目名稱:zombie-craft-svn-to-git,代碼行數:12,代碼來源:misc.functions.php

示例4: bloginfo

<?php

echo "<?xml version='1.0'?>";
?>
<rss version='2.0' xmlns:atom='http://www.w3.org/2005/Atom' xmlns:g="http://base.google.com/ns/1.0">
    <channel>
        <title><![CDATA[<?php 
bloginfo('name');
?>
 - <?php 
echo wpsc_obtain_the_title();
?>
]]></title>
        <link><![CDATA[<?php 
echo wpsc_this_page_url();
?>
]]></link>
        <description></description>
        <generator><![CDATA[<?php 
_e('WP eCommerce', 'wpsc') . " " . WPSC_PRESENTABLE_VERSION;
?>
]]></generator>
        <atom:link href='<?php 
echo wpsc_this_page_url();
?>
' rel='self' type='application/rss+xml' />
<?php 
while (wpsc_have_products()) {
    wpsc_the_product();
    ?>
          <item>
開發者ID:osuarcher,項目名稱:WP-e-Commerce,代碼行數:31,代碼來源:rss.php


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