站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
Gallery:GalleryEmbed:getImageBlock
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
=GalleryEmbed::getImageBlock()= 使用GalleryEmbed::getImageBlock($args),你可以在网站的其他页面中包含图片区块(随机的图片,特定的图片…)。它为嵌入的G2安装和不允许url_fopen的web服务器(因此不允许使用readfile()来包含外部imageblock)提供外部imageblock(见site admin -> image block)的所有选项。 GalleryEmbed::init参数与其他任何安装都不同。下面只是一个举例,其中G2被安装在web根目录下的名为/gallery2/的文件夹中,而我们用以包含图片区块的页面则在web根目录下的一个文件中。 我们在此显示单个的随机图片。你只需在'blocks' => string中使用一个竖直分割线(|)分隔区块列表,之后就可以使用单个呼叫来显示多个区块了。例如,最近的3张图片就应该是<tt>'block' => 'recentImage|recentImage|recentImage'</tt>。如果你复制/粘贴了整个getImageBlock呼叫,就会看到同样的图片3次,因此请确保通过|分隔的列表来使用单个呼叫! <?php /* 你可能需要在下面的两行语句中对/gallery2/稍作修改*/ require_once(dirname(__FILE__) . '/gallery2/embed.php'); $ret = GalleryEmbed::init(array('fullInit' => true, 'embedUri' => '/', 'g2Uri' => '/gallery2/main.php')); if ($ret) { print 'GalleryEmbed::init failed, here is the error message: ' . $ret->getAsHtml(); exit; } /* * 在"Site admin" -> "image block"中查看所有可用选项,参量也如此 * 旨为外部的imageblock */ list ($ret, $bodyHtml, $headHtml) = GalleryEmbed::getImageBlock(array('blocks' => 'randomImage', 'show' => 'title|date')); if ($ret) { print 'GalleryEmbed::getImageBlock failed, here is the error message: ' . $ret->getAsHtml(); exit; } /* $bodyHtml contains the image block. print it somewhere on your website */ print $bodyHtml; /* * $headHtml is not required. if you use imageframes for your imageblocks, you need to print * $headHtml in the <head> section of your web page */ ?> 上述代码最终将显示一个随机的图片。 你也可以显示某个特定的图片。只需简单地将''randomImage''替换为''specificItem''并用''itemId''定义其ID即可,即: list ($ret, $bodyHtml, $headHtml) = GalleryEmbed::getImageBlock( array('blocks' => 'specificItem', 'itemId' => 25, 'show' => 'title|date')); 如果你知道该项目的路径而不知道ID的话,可以如此查找到ID: list ($ret, $itemId) = GalleryCoreApi::fetchItemIdByPath('albumName/imageName.jpg'); if ($itemId) { list ($ret, $bodyHtml, $headHtml) = GalleryEmbed::getImageBlock( array('blocks' => 'specificItem', 'itemId' => $retrievedItemID[1], 'show' => 'title|date')); ==水平区块显示== 在页面中添加此CSS以使得区块按水平方向显示: .one-image { float: left; } a img { border: 0; }
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)