আমি জিনিসটা কিভাবে হোম পেজে সম্পূর্ণ পোস্ট প্রদর্শন করার চেষ্টা করছি, এবং প্রায় সব আর্কাইভ উপর উদ্ধৃতাংশ 3 দিন. এই সুন্দর কারণ এটা মানে প্রতিটি পোস্টের একটি শালীন পরিমাণ সামনের পাতায় দেখানো হয়, আর্কাইভ পাতা থাকাকালীন প্রতিটি পোস্টের একটি আরো অনেক কিছু সংক্ষিপ্ত সারসংক্ষেপ ধারণ করে। এই মানুষের জন্য উভয় উত্তম, এবং এর জন্য এই - আমার আর্কাইভ পেজ এখন আমার হোম পৃষ্ঠা থেকে ডুপ্লিকেট বিষয়বস্তু নেই!
পরিশেষে আমি একটি সমাধান উত্পাদিত করেছি। এটা বিশেষ করে মার্জিত নয়, কিন্তু আমি খুব সীমাতে চলেছি আমার পিএইচপি জ্ঞান শুধু এই পদ্ধতি অর্জন করা। এই মিস্টিক বিশেষভাবে প্রযোজ্য 3 থিম, অন্যান্য থিম পরিবর্তন হওয়ার সম্ভাবনা রয়েছে করার সম্ভাবনা বেশি, although some of this information may or may not prove relevant. If you are trying or succeed in doing the same to a different theme do drop a comment in.
কিভাবে এটি বর্তমানে কাজ করে
Mystique has options which allow the admin to choose whether to display excerpts or full posts. This option is stored as $post_content_mode inside the $options array.
The file archive.php displays the archive and displays each post in a loop via teaser.php
teaser.php লাইন হয়েছে
[পিএইচপি]<?পিএইচপি (is_sticky() && is_home()) ? the_content() : $app->পোস্ট>বিষয়বস্তু(); ?>[/পিএইচপি]
This line generates the content via a call to the function getContent in the file AtomObjectPost.php. If this line is commented the post contents disappear from archive pages.
The getContent function loads $options and as a results either calls the_content() অথবা the_excerpt() which are wordpress built-in functions.
সমাধান
I’ve managed to achieve what I wish by modifying teaser.php — but its a bit of a botch job I think. I just replaced
[পিএইচপি]<?পিএইচপি (is_sticky() && is_home()) ? the_content() : $app->পোস্ট>বিষয়বস্তু(); ?>[/পিএইচপি]
সঙ্গে
[পিএইচপি]<?php যদি(is_home()): ?>
<?পিএইচপি (is_sticky() && is_home()) ? the_content() : $app->পোস্ট>বিষয়বস্তু(); ?>
<?অন্য পিএইচপি: ?>
<?পিএইচপি (is_sticky() && is_home()) ? the_excerpt() : $app->পোস্ট>বিষয়বস্তু(‘e’); ?>
<?পিএইচপি endif; ?>[/পিএইচপি]
একটি ভাল সমাধান?
I would rather implement this solution via an addition to functions.php but I have no idea how to do so. My পিএইচপি knowledge just isn’t good enough.
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”