WordPress 홈 페이지의 최신 게시물에 강좌를 추가하는 방법은 무엇입니까?
P粉073857911
P粉073857911 2024-03-21 23:09:34
0
1
316

워드프레스에서 최근 글 3개를 홈페이지에 표시하기 위해 다음 기능을 사용하고 있습니다. 다른 스타일을 부여할 수 있도록 마지막 div에 클래스 class="latest-posts-right"를 추가할 수 있나요? 어떻게 해야 하나요?

<?php
/* Show latest posts on homepage */
function latest_post() {

    $args = array(
        'posts_per_page' => 3, /* how many post you need to display */
        'offset' => 0,
        'orderby' => 'post_date',
        'order' => 'DESC',
        'post_type' => 'post', /* your post type name */
        'post_status' => 'publish'
    );
    $query = new WP_Query($args);
    if ($query->have_posts()) :
        while ($query->have_posts()) : $query->the_post();
            ?>
            <div class="latest-posts">
            <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <p><?php the_excerpt(); ?></p>
            <div class="readmore"><a href="<?php the_permalink(); ?>">Read more »</a></div>
            </div>
            <?php
        endwhile;
    endif;
}

add_shortcode('lastest-post', 'latest_post');
?>

P粉073857911
P粉073857911

모든 응답(1)
P粉384366923

CSS 선택기: 막내 자녀가 일할 수 있습니다

으아아아

또는

으아아아
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!