HOME 首頁(yè)
SERVICE 服務(wù)產(chǎn)品
XINMEITI 新媒體代運(yùn)營(yíng)
CASE 服務(wù)案例
NEWS 熱點(diǎn)資訊
ABOUT 關(guān)于我們
CONTACT 聯(lián)系我們
創(chuàng)意嶺
讓品牌有溫度、有情感
專注品牌策劃15年

    調(diào)用wordpress數(shù)據(jù)庫(kù)ID(wordpress數(shù)據(jù)庫(kù)連接)

    發(fā)布時(shí)間:2023-04-19 03:19:02     稿源: 創(chuàng)意嶺    閱讀: 76        

    大家好!今天讓創(chuàng)意嶺的小編來(lái)大家介紹下關(guān)于調(diào)用wordpress數(shù)據(jù)庫(kù)ID的問(wèn)題,以下是小編對(duì)此問(wèn)題的歸納整理,讓我們一起來(lái)看看吧。

    開(kāi)始之前先推薦一個(gè)非常厲害的Ai人工智能工具,一鍵生成原創(chuàng)文章、方案、文案、工作計(jì)劃、工作報(bào)告、論文、代碼、作文、做題和對(duì)話答疑等等

    只需要輸入關(guān)鍵詞,就能返回你想要的內(nèi)容,越精準(zhǔn),寫(xiě)出的就越詳細(xì),有微信小程序端、在線網(wǎng)頁(yè)版、PC客戶端

    官網(wǎng):https://ai.de1919.com。

    創(chuàng)意嶺作為行業(yè)內(nèi)優(yōu)秀的企業(yè),服務(wù)客戶遍布全球各地,如需了解SEO相關(guān)業(yè)務(wù)請(qǐng)撥打電話175-8598-2043,或添加微信:1454722008

    本文目錄:

    調(diào)用wordpress數(shù)據(jù)庫(kù)ID(wordpress數(shù)據(jù)庫(kù)連接)

    一、wordpress如何獲得當(dāng)前自定義分類的id

    當(dāng)前頁(yè)是分類頁(yè)

    系統(tǒng)默認(rèn)有個(gè)變量$cat,就是當(dāng)前分類的ID

    當(dāng)前頁(yè)是單頁(yè)

    第一種方法

    $cat= single_cat_title('', false);

    echo get_cat_ID($cat);

    第二種方法

    if (!is_page() && !is_home()){

        $catsy = get_the_category(); $myCat = $catsy[0]->cat_ID; $currentcategory = '&current_category='.$myCat;

    }

    wp_list_categories('hierarchical=1&use_desc_for_title=0&exclude=12&depth=1&orderby=id&title_li='.$currentcategory);

    第三種方法

    foreach((get_the_category()) as $category) {

        echo $category->cat_ID . ''; //當(dāng)前文章的分類的ID

        echo $category->cat_name . ''; //當(dāng)前文章的分類的名稱

    }

    二、請(qǐng)問(wèn)如何wordpress中如何調(diào)用某一分類(知道分類id)下最新評(píng)論的5篇文章

    wordpress 采用的是 無(wú)線分類方式

    類似于:

    id name fuid

    1 書(shū) o

    2 數(shù)學(xué)書(shū) 1

    3 代數(shù) 2

    4 語(yǔ)文書(shū) 1

    5 文言文 4

    然后你的 你的sql語(yǔ)句 就是

    select * from 表 where fuid=1 就是所有的書(shū)。

    select * from 表 where fuid=2 就是說(shuō)有的數(shù)學(xué)書(shū)

    三、wordpress 獲取之前頁(yè)面的ID參數(shù)與標(biāo)題

    用法:<?php get_cat_ID( $cat_name ) ?>

    參數(shù):$cat_name 分類名稱 默認(rèn)值為"General"。類型為字符型可選

    返回的值:出錯(cuò)時(shí)返回0,成功則返回分類ID號(hào),類型為整數(shù)

    示例:

    <?php

    $category_id = get_cat_id('Category Name');

    query_posts('cat='.$category_id);

    if (have_posts()) : while (have_posts()) : the_post();

    the_content();

    endwhile; endif;

    ?>

    四、wordpress在不破壞css的情況下,指定id調(diào)用最新文章(文章顯示數(shù)量也要設(shè)置)

    顯示循環(huán)部分代碼

    <?php if(have_posts()) : while (have_posts()) : the_post(); ?>

    <div class="post">

    <div class="col col_2">

    <img src="<?php if ( get_post_meta($post->ID, 'thumbnail', true) ) {echo get_post_meta($post->ID, 'thumbnail', true);}elseif ( has_post_thumbnail() ){$thumbnail_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail'); echo $thumbnail_image_url[0]; }else{ echo catch_first_image(); }?>" alt="<?php the_title(); ?>" class="image_frame" />

    </div>

    <div class="col col_2 no_margin_righ">

    <h4><?php the_title(); ?></h4>

    <p><?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 170,"……"); ?></p>

    <a href="<?php the_permalink(); ?>" class="more">More</a>

    </div>

    <div class="cleaner"></div>

    </div>

    <?php endwhile; endif; ?>

    主題functions.php添加特色圖代碼和獲取文章第一張圖的代碼

    /*自定義縮略圖*/

    if(function_exists('add_image_size')){

    add_image_size('featured',300,200,true); //尺寸自己修改

    add_image_size('thumbnail',195,195,true); //尺寸自己修改,這是后面用到的

    }

    /*抓取第一張縮略圖*/

    functioncatch_first_image(){

    global$post,$posts;

    $first_img='';

    ob_start();

    ob_end_clean();

    $output=preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i',$post->post_content,$matches);

    $first_img = $matches[1][0];

    if(empty($first_img)){//自定義第一張圖片

    $random = mt_rand(1,6);

    $first_img = get_bloginfo('stylesheet_directory')."/images/random/".$random.".jpg"; //如文章無(wú)圖片,則隨機(jī)顯示6張圖片中一張,文件夾目錄注意下images/random

    }

    return $first_img;

    }

    以上只是參考。

    以上就是關(guān)于調(diào)用wordpress數(shù)據(jù)庫(kù)ID相關(guān)問(wèn)題的回答。希望能幫到你,如有更多相關(guān)問(wèn)題,您也可以聯(lián)系我們的客服進(jìn)行咨詢,客服也會(huì)為您講解更多精彩的知識(shí)和內(nèi)容。


    推薦閱讀:

    文章生成器調(diào)用(文章生成器原理)

    調(diào)用wordpress數(shù)據(jù)庫(kù)ID(wordpress數(shù)據(jù)庫(kù)連接)

    調(diào)用ChatGPT的API(調(diào)用api查看)

    大風(fēng)車(chē)景觀設(shè)計(jì)(大風(fēng)車(chē)設(shè)計(jì)圖)

    衛(wèi)星數(shù)量排行榜(2022各國(guó)衛(wèi)星數(shù)量排行榜)