ฉันมีโพสต์แบบกำหนดเองที่เรียกว่าพอร์ตโฟลิโอ ฉันต้องการลิงค์ก่อนหน้า / ถัดไปโดยไม่มีปลั๊กอิน ใครมีทางออก?
ตัวอย่างโพสต์: http://themeforward.com/demo2/archives/portfolio/boat
<?php get_header(); ?>
<!-- Begin wrap -->
<div class="clear">
<div id="full_container">
<div id="content2">
<div id="content">
<!-- Grab posts -->
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<!-- Post title -->
<h1>
<?php the_title(); ?>
</h1>
<!-- The post -->
<?php the_content(); ?>
<!-- Tags -->
<h3 class="tags">
<?php the_tags('Tags ',' / ','<br />'); ?>
</h3>
<!-- End wrap -->
</div>
<!-- Next/Previous Posts -->
<div class="mp_archive2">
<div id="more_posts">
<div class="oe">
<?php previous_post_link('%link', '« Previous post', TRUE); ?>
</div>
<div class="re">
<?php next_post_link('%link', 'Next post »', TRUE); ?>
</div>
</div>
</div>
<?php endwhile; else: ?>
<p>No matching entries found.</p>
<?php endif; ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>
3
ทำไมความเกลียดชังต่อปลั๊กอิน?
—
chrisguitarguy
เพราะถ้ามันเป็นปลั๊กอินมันไม่ได้อยู่ในธีม
—
AndrettiMilas
@Lucas Wynne หากคุณต้องการสร้างไว้ภายในให้คัดลอก / วางรหัสปลั๊กอินลงในไฟล์ themes.php ของธีมของคุณ
—
ไกเซอร์
@kaiser สมมติว่าคุณรักษาสิทธิ์การใช้งานและเงื่อนไข IP ซึ่งไม่ใช่เรื่องง่ายหากคุณผลิตธีมสำหรับการขาย
—
Phill Healey