欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

在wordpress中添加幻燈片展示

系統 1815 0

我們經常會看到一些網站上漂亮的幻燈片展示模塊,之前我們介紹過 5 款WordPress推薦文章幻燈片插件 ,而本文里面,則通過詳細的教程告訴你如何為你的博客添加一個基于SmoothGallery 2.0的幻燈片展示模塊。

?

?

?


我們需要準備什么?

在開始之前我們需要先下載 SmoothGallery 2.0

?

1. 將所需文件放到合適的地方

  • 解壓下載到的smoothgallery
  • 將解壓得到的 CSS文 件夾 復制到 wordpress 目 錄 wp-content/themes/your_theme_name
  • scripts文件夾 復制到 wp-content/themes/your_theme_name

一旦我們完成這一步,我們就有了在 博客 上運行SmoothGallery的所需效果代 碼文件。

?

2. 在header部份添加調用代碼

博客 主模板代碼的Header部分添加CSS和script文件的連接,以便在博客 頁面進行調用

將以下幾行代碼添加到主模板代碼的Header部分:

?

    <!–Css SmoothGallery–>
<link rel=”stylesheet” href=”<?php bloginfo(’template_url’); ?>/css/jd.gallery.css” type=”text/css” media=”screen”/>
<!–JS Mootools–>
<script type=”text/javascript” src=”<?php bloginfo(’template_url’); ?>/scripts/mootools.v1.11.js”></script>
<!–JS SmoothGallery–>
<script type=”text/javascript” src=”<?php bloginfo(’template_url’); ?>/scripts/jd.gallery.js”></script>

  
?

當這一步完成時,你就已經可以在 博客 主題中使用SmoothGallery了。

?

3. 新建一個Gallery.php

在你的主題目錄中新建一個文件gallery.php,這個文件會幫你生成展示gallery的html代碼。

在開始這一步之前,應該認識到smoothgallery模塊的結構。

?

?

    
      
        slideshow 300x185 如何為你的wordpress主題添加幻燈片展示
      
      



<div class=”imageElement”>
<h3>Item Title</h3>
<p>Item Description</p>
<a href=”Link to Item ” title=”open image” class=”open”></a>
<img src=”Image of item” class=”full” alt=”Item Title” />
<img src=”Thumbmail of item” class=”thumbnail” alt=”thumbnail of Item Title” />
</div>
    
  
gallery.php文件包括兩部分:

(1). 初始化SmoothGallery Script (JS)

(2). 為gally生成html/php代碼

?

你可以在這里 here 下 載到gallery.php需要這段代碼,將代碼全部保存到一個新建txt文檔中,再保存為gallery.php就可以了。

?

    <!– Initialization of SmoothGallery–>
<script type=”text/javascript”>
function startGallery() {
var myGallery = new gallery($(’myGallery’),
{timed: true});}
window.addEvent(’domready’,startGallery);
</script>
<!– Creation of the html for the gallery –>
<div class=”content”>
<div id=”myGallery”>
<!–
Get the 5 lasts posts of category which ID is 3
(to show the recent post use query_posts(’showposts=5′);)
–>
<?php query_posts(’showposts=5&cat=3′);?
<?php while (have_posts()) : the_post(); ?>
<!–get the custom fields gallery_image
(fields which contains the link to the image to show in the gallery)
–>
<?php $values = get_post_custom_values(”gallery_image”);?>
<!– Verify if you set the custom field gallery_image for the post –>
<?php if(isset($values[0]))
{?>
<!–define a gallery element–>
<div class=”imageElement”>
<!–post’s title to show for this element–>
<h3><?php the_title(); ?></h3>
<!–post’s excerpt to show for this element–>
<?php the_excerpt(); ?>
<!–Link to the full post–>
<a href=”<?php the_permalink() ?>” title=”Read more” class=”open”></a>
<!– Define the image for the gallery –>
<img src=”<?php echo $values[0]; ?>” class=”full” alt=”<?php the_title(); ?>”/>
<!– Define the thumbnail for the gallery –>
<img src=”<?php echo $values[0]; ?>” class=”thumbnail” alt=”<?php the_title(); ?>”/>
</div>
<?php }?>
<?php endwhile; ?>
</div>
</div>
  
?

4. 將gallery放到你的主題中

把<?php include (’gallery.php’); ?>放入你想添加的位置。當你完成這一步時,你的gallery就已經可以工作了。

要使你的gally運轉起來,你需要在新建一個名為 gallery_image的自定義字段,字段值即為需要展示的圖片鏈接,在 wordpress 中推薦用相對地址,比如你的圖片地址為 http://www.yoursite.com/wp-content/uploads/2008/08/artile,只需要填wp-content /uploads/2008/08/artile就可以了。

?

最后一步(不是必須):自定義gallery的具體顯示效果。

?

打開文件wp-content/themes/your_theme_name/css/jd.gallery.css,在這里修改gallery 的寬和高。(通過修改jd.gallery.css完全對這個slideshow根據自己的主題進行個性化。^_^)

?

    #myGallery, #myGallerySet, #flickrGallery
{
width: 590px;
height: 250px;
z-index:5;
border: 1px solid #000;
}
  
?

默認的字號對于中文太小了,可以調整slideshow下方信息欄的高度及文字的字號,只需要修改

?

    .jdGallery .slideInfoZone(滑動信息欄高度、顏色等參數).jdGallery .slideInfoZone h2(信息欄內標題樣式)

.jdGallery .slideInfoZone p(信息欄文本樣式)
  
?

你還可以修改wp-content/themes/your_theme_name/scripts/jd.gallery.js來改變 gallery的展示效果( Smooth Gallery 提供了多種不同的顯示效果,你可以根據需要進行修改)

?

更多定制信息請看 Smooth Gallery Website

?

?

?

?

在wordpress中添加幻燈片展示


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 日本高清色视频在线观看免费 | 国产亚州av| 色综合天天综合网国产成人网 | 午夜影院试看五分钟 | 91免费大片 | 美国成人a免费毛片 | 成人5252色 | 丁香婷婷在线观看 | 日日操夜夜操天天操 | 欧美极品欧美精品欧美视频 | 国产毛片片精品天天看视频 | 亚洲综合日韩欧美一区二区三 | 亚洲精品97福利在线 | 成人福利在线视频免费观看 | 免费激情| 国产激情 | 一区二区三区视频在线观看 | 午夜性色一区二区三区不卡视频 | 亚洲国产网站 | 成人免费网视频 | 欧美亚洲另类在线 | 国产亚洲一区二区三区在线观看 | 久久久精品欧美 | 色噜噜狠狠色综合欧洲selulu | 秋霞激情 | 国产精品一区久久久久 | 成人免费久久精品国产片久久影院 | 亚洲国产精品久久人人爱 | 国产成人精品免费久久久久 | 亚洲国产精品一区二区第一页 | 美女超碰 | 成人国产欧美精品一区二区 | 天天舔天天射天天操 | 蜜桃精品噜噜噜成人av | 日韩精品一区二区在线观看 | 久久久久国产一区二区三区 | 九九久久99| 亚洲午夜无码毛片AV久久 | 国产精品美女www爽爽爽视频 | 毛片av网| 久久久久在线观看 |