How page with random php file with query params generated

The site you linked isn’t a WordPress. You can make custom WordPress URL’s using WordPress’s URL Rewrite API. See https://codex.wordpress.org/Rewrite_API/add_rewrite_rule#Example , e.g.: function custom_rewrite_basic() { add_rewrite_rule(‘^anythinghere/([0-9]+)/?’, ‘index.php?page_id=$matches[1]’, ‘top’); } add_action(‘init’, ‘custom_rewrite_basic’); This makes a new URL format like yoursite.com/anythinghere/95 If that doesn’t meet your needs you can also edit .htaccess Editing your question to include … Read more

How to add numbers pagination to this blog page?

First of all you need to get the paged query variable and pass it to your main query args: //Protect against arbitrary paged values $paged = ( get_query_var( ‘paged’ ) ) ? absint( get_query_var( ‘paged’ ) ) : 1; $args = array( ‘post_type’ => ‘post’ ‘paged’ => $paged, ); Then you have to add the … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)