PDA

توجه ! این یک نسخه آرشیو شده میباشد و در این حالت شما عکسی را مشاهده نمیکنید برای مشاهده کامل متن و عکسها بر روی لینک مقابل کلیک کنید : نمایش خلاصه یک مطلب رمزنگاری شده در وردپرس



JahanSoft
May 12th, 2017, 02:55
کافیه کد زیر را در فایل functions.php قالب خود اضافه کنید :


function wpb_protected_excerpt( $excerpt ) {if ( post_password_required() ) {
$post = get_post();
$excerpt=$post->post_excerpt;
}
return $excerpt;
}
add_filter( 'the_excerpt', 'wpb_protected_excerpt' );

function wpb_protected_excerpt_posts( $content ) {
if ( post_password_required() && is_single() ) {
$post = get_post();

return $post->post_excerpt.$content;
}}
add_filter( 'the_content', 'wpb_protected_excerpt_posts', 10 );



و البته هنگام درج مطلب ، کادر خلاصه مطلب هم پر کنید.