Custom folder with PDF files (not in WP Library) – Create url for each file
You can achieve this in WordPress by using custom rewrite rules. Use this code inside theme’s function.php file or inside a plugin. // 1- Create a custom query var add_filter( ‘query_vars’, function ( $query_vars ) { $query_vars[] = ‘my_pdf_file’; return $query_vars; }); // 2- Add a custom rewrite rule. // NOTE: rewrite rules must be … Read more