简体   繁体   中英

How to link a slider to specific blog post in php for Wordpress

I have blog slider on my main page of WordPress website and in that slider, each blog has its own page of continue reading. When I click on 'Continue Reading' it should be linked to that specific blog post.

Just add an anchor to each slide. Put the permalink of the blog post in the href attribute.

<a href="<?php echo get_permalink($blogPostId); ?>">Continue Reading</a>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM