也想出现在这里? 联系我们

如何给WordPress网站添加滚动公告?

作者 : 小编 本文共3260个字,预计阅读时间需要9分钟 发布时间: 2020-08-4 共1.9K人阅读
也想出现在这里? 联系我们

如何给WordPress网站添加滚动公告?今天我们一起了解一下。

1、添加公告文章类型

首先,注册一个公告的文章类型,包括公告的新建,添加,编辑与删除。在functions.php的同级目录下新建一个 gonggao.php ,代码如下:

function post_type_bulletin() {

register_post_type(

‘bulletin’,

array( ‘public’ => true,

‘publicly_queryable’ => true,

‘hierarchical’ => false,

‘labels’=>array(

‘name’ => _x(‘公告’, ‘post type general name’),

‘singular_name’ => _x(‘公告’, ‘post type singular name’),

‘add_new’ => _x(‘添加新公告’, ‘公告’),

‘add_new_item’ => __(‘添加新公告’),

‘edit_item’ => __(‘编辑公告’),

‘new_item’ => __(‘新的公告’),

‘view_item’ => __(‘预览公告’),

‘search_items’ => __(‘搜索公告’),

‘not_found’ => __(‘您还没有发布公告’),

‘not_found_in_trash’ => __(‘回收站中没有公告’),

‘parent_item_colon’ => ”

),

‘show_ui’ => true,

‘menu_position’=>5,

‘supports’ => array(

‘title’,

‘author’,

‘excerpt’,

‘thumbnail’,

‘trackbacks’,

‘editor’,

‘comments’,

‘custom-fields’,

‘revisions’ ) ,

‘show_in_nav_menus’ => true ,

‘menu_icon’ => ‘dashicons-megaphone’,

‘taxonomies’ => array(

‘menutype’,

‘post_tag’)

)

);}add_action(‘init’, ‘post_type_bulletin’);

function create_genre_taxonomy() {

$labels = array(

‘name’ => _x( ‘公告分类’, ‘taxonomy general name’ ),

‘singular_name’ => _x( ‘genre’, ‘taxonomy singular name’ ),

‘search_items’ => __( ‘搜索分类’ ),

‘all_items’ => __( ‘全部分类’ ),

‘parent_item’ => __( ‘父级分类目录’ ),

‘parent_item_colon’ => __( ‘父级分类目录:’ ),

‘edit_item’ => __( ‘编辑公告分类’ ),

‘update_item’ => __( ‘更新’ ),

‘add_new_item’ => __( ‘添加新公告分类’ ),

‘new_item_name’ => __( ‘New Genre Name’ ),

);

register_taxonomy(‘genre’,array(‘bulletin’), array(

‘hierarchical’ => true,

‘labels’ => $labels,

‘show_ui’ => true,

‘query_var’ => true,

‘rewrite’ => array( ‘slug’ => ‘genre’ ),

));}add_action( ‘init’, ‘create_genre_taxonomy’, 0 );

在functions.php中引用该公告的gonggao.php文件,在functions.php的底部加上如下代码:

include (“gonggao.php”);

之后,再登录到wordpress网站的后台,就可以看到在文章的下面多了一个公告标签。

上述代码中的

‘menu_icon’ => ‘dashicons-megaphone’,

就是我们设定的 Dashicons 图标,效果如下图。如果去掉这行的话,图标默认和文章的图标一样。

2. 添加公告样式

将下面的公告内容代码放在 index.php 自己想要显示的位置:

<div id”site-gonggao”><div class”site-gonggao-div”><i class=”fa fa-volume-up”</i></div>;

<div id=”site-gonggao-div2″ class=”sitediv”>

< ul class=”list” id=”siteul”>

<?php $loop = new WP_Query( array(‘post_type’ =>’bulletin’, ‘posts_per_page’ => 3 ) );

while ( $loop->have_posts() ) : $loop-&gt;the_post();

?>;

<li><?php mb_strimwidth(the_content(), 0, 70, ‘…’); ?></li>

<?php endwhile; wp_reset_query(); ?>

</ul>

</di></di>

其中 3 代表有 3 条公告, 70 则表示每个公告显示 70 个字符。这个可以根据你自己的情况设置。

3. 添加 css 代码

将下面代码复制到 main.css 文件当中即可:

div#site-gonggao {

line-height: 25px;

height: 30px;

background-color: #FFF;

padding-left: 10px;

color: #666;

-webkit-box-shadow: 0 5px 5px #D3D3D3;

box-shadow: 0 5px 5px #D3D3D3;}

#site-gonggao .list {

padding-left: 5px;}

.site-gonggao-div {

float: left;}

.fa-volume-up:before {

content: “f028”;

color: #428bca;}

#site-gonggao a {

color: #1663B7;}

#site-gonggao a:hover {

color: #09F;}

#site-gonggao-div2 {

overflow: hidden;

height: 30px;}

#site-gonggao-div2 .list li {

height: 30px;

line-height: 30px;

overflow: hidden;}

#site-gonggao-div2 .list li p {

display: inline;

overflow: hidden;

white-space: nowrap;

text-overflow: ellipsis;}

4. 添加滚动公告 js 代码

添加公告的滚动代码,需要 jQuery 库,当然 DUX 主题是已经加载了的,直接将下面代码复制到 header.php 中即可

function autoScroll(obj){ var aa=document.getElementById(“siteul”).getElementsByTagName(“li”).length;if(aa!==1){

jQuery(obj).find(“.list”).animate({

marginTop : “-30px”

},500,function(){

jQuery(this).css({marginTop : “0px”}).find(“li:first”).appendTo(this);

})

};

}

$(function(){

setInterval(‘autoScroll(“.sitediv”)’,4000)

}) ;

其中,第 4 行的 “.list” 是调用代码中,ul 标签的 class 样式;第 12 行的 “.sitediv” 是包裹 ul 的 div 标签的 class 样式。

更多wordpress相关技术文章,请访问wordpress教程栏目进行学习!

以上就是Wordpress滚动公告怎么做的详细内容,更多请关注主题盒子。

1. 本站所提供的源码模板(主题/插件)等资源仅供学习交流,若使用商业用途,请购买正版授权,否则产生的一切后果将由下载用户自行承担,有部分资源为网上收集或仿制而来,若模板侵犯了您的合法权益,请来信通知我们(Email: rayer@88.com),我们会及时删除,给您带来的不便,我们深表歉意!
2. 分享目的仅供大家学习和交流,请不要用于商业用途!
3. 如果你也有好源码或者教程,可以到用户中心发布投稿,分享有金币奖励和额外收入!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务 请大家谅解!
5. 如有链接无法下载、失效或广告,请联系站长,可领回失去的金币,并额外有奖!
6. 如遇到加密压缩包,默认解压密码为"www.zyfx8.cn",如遇到无法解压的请联系管理员!
本站部分文章、资源来自互联网,版权归原作者及网站所有,如果侵犯了您的权利,请及时联系我站删除。免责声明
资源分享吧 » 如何给WordPress网站添加滚动公告?

常见问题FAQ

免费下载或者VIP会员专享资源能否直接商用?
本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
织梦模板使用说明
你下载的织梦模板并不包括DedeCMS使用授权,根据DedeCMS授权协议,除个人非盈利站点外,均需购买DedeCMS商业使用授权。购买地址: http://www.desdev.cn/service-dedecms.html

发表评论

Copyright 2015-2020 版权所有 资源分享吧 Rights Reserved. 蜀ICP备14022927号-1
开通VIP 享更多特权,建议使用QQ登录