導讀:建站技術建站技術如果你的WordPress主題網站每天都更新大量的文章,而主頁列表又不是類似于教程網那種小標題的列表,用戶看上去就不知道每天到底更新了沒有,更新了多少,這里我們網站的搭建建站技術。

如果你的WordPress主題網站每天都更新大量的文章,而主頁列表又不是類似于教程網那種小標題的列表,用戶看上去就不知道每天到底更新了沒有,更新了多少,這里我們給WordPress條件一個每日文章更新數量顯示的功能,可以顯示在導航欄或者其他地方,提示訪客每日更新的內容。
WordPress顯示每日文章更新數量
這里給出php函數和調用代碼,以導航欄為例,首先將下面代碼加入到主題模板函數 functions.php 中:
//?注冊菜單
register_nav_menus(?array(
????'primary'?=>?__(?'我的菜單'?),
)?);
//?強化菜單?調用代碼?(php)?wp_nav_menu(?array(?'theme_location'?=>?'primary',?'walker'?=>?new?description_walker?)?);?(/php)
//?強化菜單?結構
class?description_walker?extends?Walker_Nav_Menu
{
????function?start_el(&$output,?$item,?$depth,?$args)
????{
????????global?$wp_query;
????????$indent?=?(?$depth?)???str_repeat(?"t",?$depth?)?:?'';
????????$class_names?=?$value?=?'';
????????$classes?=?emptyempty(?$item->classes?)???array()?:?(array)?$item->classes;
????????$class_names?=?join(?'?',?apply_filters(?'nav_menu_css_class',?array_filter(?$classes?),?$item?)?);
????????$class_names?=?'?class="'.?esc_attr(?$class_names?)?.?'"';
????????$output?.=?$indent?.?'<li?id="menu-item-'.?$item->ID?.?'"'?.?$value?.?$class_names?.'>';
????????$attributes??=?!?emptyempty(?$item->attr_title?)???'?title="'??.?esc_attr(?$item->attr_title?)?.'"'?:?'';
????????$attributes?.=?!?emptyempty(?$item->target?)???????'?target="'?.?esc_attr(?$item->target?????)?.'"'?:?'';
????????$attributes?.=?!?emptyempty(?$item->xfn?)??????????'?rel="'????.?esc_attr(?$item->xfn????????)?.'"'?:?'';
????????$attributes?.=?!?emptyempty(?$item->url?)??????????'?href="'???.?esc_attr(?$item->url????????)?.'"'?:?'';
關鍵詞標簽: 建站 數量 菜單
聲明: 本文由我的SEOUC技術文章主頁發布于:2023-07-23 ,文章WordPress導航菜單顯示每日文章更新數量,建站技術主要講述菜單,數量,建站網站建設源碼以及服務器配置搭建相關技術文章。轉載請保留鏈接: http://www.bifwcx.com/article/web_35464.html