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

PHP get_theme_url函数代码示例

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

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



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

示例1: get_asset_url

function get_asset_url($file, $returnType = false)
{
    $type = pathinfo($file, PATHINFO_EXTENSION);
    //  Set image type if we're using a weird image
    if (in_array($type, ['png', 'jpg', 'gif', 'bmp', 'svg'])) {
        $type = 'img';
    }
    $path = get_theme_url('assets/' . $type . '/' . $file);
    if ($returnType === true) {
        return ['url' => $path, 'type' => $type];
    }
    return $path;
}
开发者ID:BinaryGeometry,项目名称:aviate,代码行数:13,代码来源:theme.php


示例2: die

<?php

if (!defined('IN_GS')) {
    die('you cannot load this page directly.');
}
/* * **************************************************
 *
 * @File:         template.php
 * @Package:      GetSimple
 * @Action:       finntemplate theme for GetSimple CMS
 *
 * *************************************************** */
$echo = false;
$siteurl = get_site_url($echo);
$themeurl = get_theme_url($echo);
?>

<!DOCTYPE html>

<html lang=en>
    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        
        <!--FAVICON AND DESKTOP ICONS-->
        <link rel="apple-touch-icon" sizes="57x57" href="<?php 
echo $siteurl;
?>
apple-touch-icon-57x57.png?v3=E6vx09KgLX">
        <link rel="apple-touch-icon" sizes="60x60" href="<?php 
开发者ID:Kevinf63,项目名称:KevPortfolio,代码行数:31,代码来源:template.php


示例3: get_theme_url

				</div><!--content-social-->
			</div><!--top-header-wrapper-->
			<div id="leader-wrapper">
				<div id="ad-970">

					<?php 
/* $ad970 = get_option('ht_leader_ad'); if ($ad970) { echo stripslashes($ad970); } */
?>

				</div><!--ad-970-->
			</div><!--leader-wrapper-->
			<div id="logo-wrapper" itemscope itemtype="http://schema.org/Organization">

					<a itemprop="url" href=""><img itemprop="logo" src="<?php 
get_theme_url();
?>
/images/logo.png" alt="logo" /></a>
			</div><!--logo-wrapper-->

		</div><!--header-wrapper-->
		<div id="nav-wrapper">

			
			<ul class="main-nav">

			
			</ul><!--main-nav-->

			<div id="main-search">
开发者ID:Emmett-Brown,项目名称:linea,代码行数:29,代码来源:header.inc+(copia).php


示例4: str_replace

		$url = str_replace("&amp;", "&", get_url('files', 'save_presentation'));
		$filename = '';
		$slimContent = escapeSLIM('<div class="slide"><div style="font-size: 200%; font-weight: bold; font-family: sans-serif; position: absolute; left: 5%; top: 0%; width: 90%; height: 10%; text-align: center;">'.lang("new presentation").'</div></div>');
	}
	$id = gen_id();
?>

<div id="<?php echo $id ?>" style="width: 100%; height: 100%; overflow: hidden;">
</div>

<script>
	var panel = Ext.getCmp(og.getParentContentPanel('<?php echo $id ?>').id);
	var <?php echo $id ?> = new Slimey({
		container: "<?php echo $id ?>",
		rootDir: '<?php echo SLIMEY_PATH ?>',
		imagesDir: '<?php echo get_theme_url("slimey/images/") ?>',
		filename: <?php echo ($file->isNew()?"''":json_encode($file->getFilename())) ?>,
		fileId: <?php echo ($file->isNew()?0:$file->getId()) ?>,
		slimContent: '<?php echo $slimContent ?>',
		saveUrl: '<?php echo $url ?>'
	});
	<?php echo $id ?>.layout();
	setTimeout(function() {
		<?php echo $id ?>.layout();
	}, 1000);
	panel.on('resize', <?php echo $id ?>.layout, <?php echo $id ?>);
	
	// for the image chooser
	imagesUrl = '<?php echo get_url('files', 'list_files', array('type' => 'image', 'ajax' => 'true')) ?>';
	
	og.eventManager.addListener("presentation saved", function(obj) {
开发者ID:Jtgadbois,项目名称:Pedadida,代码行数:31,代码来源:add_presentation.php


示例5: Slimey

?>
').id);
	var <?php 
echo $id;
?>
 = new Slimey({
		container: "<?php 
echo $id;
?>
",
		rootDir: '<?php 
echo SLIMEY_PATH;
?>
',
		imagesDir: '<?php 
echo get_theme_url("slimey/images/");
?>
',
		filename: <?php 
echo $file->isNew() ? "''" : json_encode($file->getFilename());
?>
,
		fileId: <?php 
echo $file->isNew() ? 0 : $file->getId();
?>
,
		slimContent: '<?php 
echo $slimContent;
?>
',
		saveUrl: '<?php 
开发者ID:abhinay100,项目名称:feng_app,代码行数:31,代码来源:add_presentation.php


示例6: get_url

?>
"/>
	<meta name="robots" content="index,follow"/>
	<link href="<?php 
get_url('favicon.ico');
?>
" rel="icon" type="image/x-icon" />
	<link rel="alternate" type="application/rss+xml" title="<?php 
get_site('title');
?>
 Rss Feed" href="<?php 
get_url('feed.php');
?>
" />
	<link rel="stylesheet" href="<?php 
get_theme_url('css');
?>
" type="text/css" />
	<?php 
exec_action('header');
?>
</head>
<body id="<?php 
get_page('id');
?>
">
<?php 
echo isset($adminMenu) ? $adminMenu : '';
?>
<div id="wrap">
	<div id="header" class="clear_both">
开发者ID:xctcc,项目名称:congtu,代码行数:31,代码来源:header.php


示例7: get_page_clean_title

<?php 
}
if ($twitter_creator) {
    ?>
    <meta name="twitter:creator" content="@<?php 
    echo $twitter_creator;
    ?>
" />
<?php 
}
?>
<meta name="twitter:title" content="<?php 
echo get_page_clean_title();
?>
" />
<meta name="twitter:description" content="<?php 
echo get_page_meta_desc();
?>
" />
<?php 
if ($this->imageExists(get_theme_url(false) . "/" . $general_image_path . return_page_slug() . '.jpg')) {
    ?>
    <meta name="twitter:image" content="<?php 
    echo get_theme_url(false) . "/" . $general_image_path . return_page_slug() . '.jpg';
    ?>
" />
<?php 
}
?>

开发者ID:tecmec,项目名称:open-graph-manager,代码行数:29,代码来源:open_graph_data.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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