কাস্টম পোস্ট ধরণের পুনর্লিখনের নিয়মগুলি যুক্ত করার সময় আক্রমণের জন্য 2 টি পয়েন্ট রয়েছে:
বিধি পুনর্লিখন
এই ঘটনা যখন লেখা নিয়ম উত্পন্ন হচ্ছে wp-includes/rewrite.php
মধ্যে WP_Rewrite::rewrite_rules()
। ওয়ার্ডপ্রেস আপনাকে পোস্ট, পৃষ্ঠাগুলি এবং বিভিন্ন ধরণের সংরক্ষণাগার যেমন নির্দিষ্ট উপাদানগুলির জন্য পুনর্লিখনের নিয়মগুলি ফিল্টার করতে দেয়। আপনি posttype_rewrite_rules
যে posttype
অংশটি দেখছেন তা আপনার কাস্টম পোস্টের নাম হওয়া উচিত। বিকল্প post_rewrite_rules
হিসাবে আপনি ফিল্টারটি ততক্ষণ ব্যবহার করতে পারবেন যতক্ষণ না আপনি স্ট্যান্ডার্ড পোস্ট বিধিগুলিও মুছে ফেলেন না।
এরপরে পুনরায় লেখার নিয়মগুলি তৈরি করার জন্য আমাদের ফাংশনটি দরকার:
// add our new permastruct to the rewrite rules
add_filter( 'posttype_rewrite_rules', 'add_permastruct' );
function add_permastruct( $rules ) {
global $wp_rewrite;
// set your desired permalink structure here
$struct = '/%category%/%year%/%monthnum%/%postname%/';
// use the WP rewrite rule generating function
$rules = $wp_rewrite->generate_rewrite_rules(
$struct, // the permalink structure
EP_PERMALINK, // Endpoint mask: adds rewrite rules for single post endpoints like comments pages etc...
false, // Paged: add rewrite rules for paging eg. for archives (not needed here)
true, // Feed: add rewrite rules for feed endpoints
true, // For comments: whether the feed rules should be for post comments - on a singular page adds endpoints for comments feed
false, // Walk directories: whether to generate rules for each segment of the permastruct delimited by '/'. Always set to false otherwise custom rewrite rules will be too greedy, they appear at the top of the rules
true // Add custom endpoints
);
return $rules;
}
আপনি যদি চারপাশে খেলার সিদ্ধান্ত নেন তবে এখানে নজর রাখার মূল বিষয় হ'ল 'ওয়াক ডিরেক্টরি' বুলেটিয়ান। এটি একটি পারমাস্ট্রাক্টের প্রতিটি বিভাগের জন্য পুনর্লিখনের নিয়ম উত্পন্ন করে এবং পুনর্লিখনের নিয়ম মেলেনি cause যখন কোনও ওয়ার্ডপ্রেস ইউআরএল অনুরোধ করা হয় পুনরায় লেখার নিয়মের অ্যারেটি উপরে থেকে নীচে চেক করা হয়। যত তাড়াতাড়ি কোনও ম্যাচটি পাওয়া যায় এটি যা যা এসেছিল তা লোড করবে উদাহরণস্বরূপ যদি আপনার পারমাস্ট্রাক্টে লোভী মিল রয়েছে যেমন eg কারণ /%category%/%postname%/
এবং ওয়াক ডিরেক্টরিগুলি এতে রয়েছে যা উভয়ের জন্যই পুনর্লিখনের নিয়ম /%category%/%postname%/
এবং /%category%/
যে কোনও কিছুর সাথে মিলবে। যদি খুব তাড়াতাড়ি এটি ঘটে তবে আপনি ক্ষতিগ্রস্থ হন।
পার্মালিনক্স
এটি এমন ফাংশন যা পোস্ট ধরণের পার্মলিংকগুলি পার্স করে এবং একটি পারমাস্ট্রাক্টকে (যেমন '/% বছর% /% মাসনাম% /% পোস্টনাম% /') কে সত্যিকারের URL এ রূপান্তর করে।
পরের অংশটি আদর্শভাবে get_permalink()
পাওয়া ফাংশনের একটি সংস্করণ কী হবে তার একটি সাধারণ উদাহরণ wp-includes/link-template.php
। কাস্টম পোস্ট পারমিলিংকগুলি উত্পন্ন হয় get_post_permalink()
যার দ্বারা অনেকটা ওয়াটারড ডাউন সংস্করণ get_permalink()
। get_post_permalink()
ফিল্টার করা হয় post_type_link
তাই আমরা এটি একটি কাস্টম পারমাস্ট্রাকচার করতে ব্যবহার করি।
// parse the generated links
add_filter( 'post_type_link', 'custom_post_permalink', 10, 4 );
function custom_post_permalink( $permalink, $post, $leavename, $sample ) {
// only do our stuff if we're using pretty permalinks
// and if it's our target post type
if ( $post->post_type == 'posttype' && get_option( 'permalink_structure' ) ) {
// remember our desired permalink structure here
// we need to generate the equivalent with real data
// to match the rewrite rules set up from before
$struct = '/%category%/%year%/%monthnum%/%postname%/';
$rewritecodes = array(
'%category%',
'%year%',
'%monthnum%',
'%postname%'
);
// setup data
$terms = get_the_terms($post->ID, 'category');
$unixtime = strtotime( $post->post_date );
// this code is from get_permalink()
$category = '';
if ( strpos($permalink, '%category%') !== false ) {
$cats = get_the_category($post->ID);
if ( $cats ) {
usort($cats, '_usort_terms_by_ID'); // order by ID
$category = $cats[0]->slug;
if ( $parent = $cats[0]->parent )
$category = get_category_parents($parent, false, '/', true) . $category;
}
// show default category in permalinks, without
// having to assign it explicitly
if ( empty($category) ) {
$default_category = get_category( get_option( 'default_category' ) );
$category = is_wp_error( $default_category ) ? '' : $default_category->slug;
}
}
$replacements = array(
$category,
date( 'Y', $unixtime ),
date( 'm', $unixtime ),
$post->post_name
);
// finish off the permalink
$permalink = home_url( str_replace( $rewritecodes, $replacements, $struct ) );
$permalink = user_trailingslashit($permalink, 'single');
}
return $permalink;
}
যেমনটি কাস্টম পুনর্লিখনের নিয়ম ও পারমালিক্স তৈরির জন্য খুব সরল একটি কেস হিসাবে উল্লেখ করা হয়েছে এবং এটি বিশেষভাবে নমনীয় নয় তবে আপনাকে শুরু করার পক্ষে এটি যথেষ্ট হওয়া উচিত।
প্রতারণা
আমি একটি প্লাগইন লিখেছিলাম যা আপনাকে যে কোনও কাস্টম পোস্ট ধরণের জন্য পার্মস্ট্রাস্টিকগুলি সংজ্ঞায়িত করতে দেয়, তবে আপনি যেমন %category%
পোস্টের জন্য পার্মালিঙ্ক কাঠামোতে ব্যবহার করতে পারেন আমার প্লাগইন %custom_taxonomy_name%
আপনার যে কোনও কাস্টম ট্যাক্সনোমির জন্য সমর্থন করে custom_taxonomy_name
যেমন আপনার ট্যাক্সনোমির নাম যেমন where %club%
।
শ্রেণিবদ্ধ / অ-স্তরক্রমিক ট্যাক্সনোমির সাথে আপনি যেমন প্রত্যাশা করতেন এটি কাজ করবে It
http://wordpress.org/extend/plugins/wp-permastructure/