Redirect to brand page after click on the brand logo

just call the function the_custom_logo(); and then on appearence choose your logo. if this option is not available in appearance, you need to add the theme support to functions.php add_theme_support(‘custom-logo’); this redirectes to home page, if you need to redirect to a custom url you can use <a href=”<?= home_url() ?>/brand/midea”><img src=”yourimage_path”></a>

New posts link to old posts (random)

1. Flush your permalinks by going to “Settings” > “Permalinks” and click Save. (I realized you already did this, but others may not have) 2. If running Apache, check that .htaccess matches this: # BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # … Read more

Permalinks Question: Adding a prefix ONLY in front of the posts

1) Add this rewrite at the end of you function.php function add_rewrite_rules( $wp_rewrite ) { $new_rules = array( ‘YOUR_PREFIX/(.+?)/?$’ => ‘index.php?post_type=post&name=”. $wp_rewrite->preg_index(1), ); $wp_rewrite->rules = $new_rules + $wp_rewrite->rules; } add_action(“generate_rewrite_rules’, ‘add_rewrite_rules’); function change_blog_links($post_link, $id=0){ $post = get_post($id); if( is_object($post) && $post->post_type == ‘post’){ return home_url(‘/YOUR_PREFIX/’. $post->post_name.”https://wordpress.stackexchange.com/”); } return $post_link; } add_filter(‘post_link’, ‘change_blog_links’, 1, 3); 2) … Read more

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