Installing WordPressInstalling WordPress is very easy and takes less than five minutes to complete. It is best known for its ease of installation. All web hosting companies allow WordPress installation within few clicks.There are different methods to install WordPress on a system.Methods to install WordPressUsing cPanelThis is the fastest and...
Showing posts with label Wordpress. Show all posts
Showing posts with label Wordpress. Show all posts
27 February, 2023
07 April, 2022
Blog Word Prefix in post only wordpress URL
Programing Coderfunda
April 07, 2022
Wordpress
No comments
Copy past and check 1) Add this rewrite at the end of you function.phpfunction add_rewrite_rules( $wp_rewrite )
{
$new_rules = array(
'blog/(.+?)/?$' => 'index.php?post_type=post&name='. $wp_rewrite->preg_index(1),
);
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
}
add_action('generate_rewrite_rules',...
URL prefix for posts WordPress
Programing Coderfunda
April 07, 2022
Wordpress
No comments
So I have website on a WordPress engine. And I want to make posts urls looks like coderfunda.blogspot.com or http://coderfunda.blogspot.com/blog/categ-name/post-name/. But everything else will look like http://website.com/page-name/. Just want to add prefix 'blog' to urls for all posts but not pages. My permalink settings...
URL prefix for posts WordPress | Use Blog Word Prefix in post only wordpress URL
Programing Coderfunda
April 07, 2022
Wordpress
No comments
This function use in wordpress function.php file in last .if you want to change url according your post exp.https://www.blogger.com/blog/category/postname"blog" is a prefix This is use only post not show in page.then visite permalink and set fist custome/category/postnamecopy past and check 1) Add this rewrite at the end of you function.phpfunction...
30 March, 2022
WordPress Interview Questions
Programing Coderfunda
March 30, 2022
Wordpress
No comments