What is WordPress a brief introduction to WordPress you will learn about the main topics that clear the main topic what is wp
What is WordPress? Introduction to WordPress how it works and many more about WordPress
seen from United States
seen from United States
seen from China

seen from France
seen from United States
seen from Poland

seen from United States

seen from Türkiye
seen from Japan
seen from China
seen from China

seen from United States
seen from China

seen from United States
seen from United States
seen from United States
seen from Germany
seen from Türkiye
seen from United States
seen from United States
What is WordPress a brief introduction to WordPress you will learn about the main topics that clear the main topic what is wp
What is WordPress? Introduction to WordPress how it works and many more about WordPress
How to count post views without wordpress plugin
How to count post views without wordpress plugin
There are many wordpress plugin which will give you the post views using custom tables. But here using following code you can track the post views of your wp site.
Using external plugin, you can get the views and report but it will add more sql quries and extra load to your site. So I suggest use following code for getting the post views.
You just need to copy and paste the following code into…
View On WordPress
Show the image attachments count in Post list section
Show the image attachments count in Post list section
Many people wants to see the number of attachments which are used for posts. In Post list page people wants to see the number of image and other attachments. Using following code you will be able to see the attachment count in post list section.
You just need to copy and paste the following code into functions.php file.
[php] add_filter(‘manage_posts_columns’, ‘posts_columns_attachment_count’, 5);
View On WordPress
After WP registration send user to specific page
After WP registration send user to specific page
Many wordpress website users allow user to register on there site. After new user registration if we want to show them specific instructions or registration success page then you can use the following code. Put following code into functions.php file.
Before adding the following code create your “registration-done” page.
[php] function wpapi_registration_redirect(){ return home_url(…
View On WordPress
How to to list the all wordpress roles in selectbox
How to to list the all wordpress roles in selectbox
In your theme code backend or plugin code you can list your wp roles. You need to display wordpress users roles many times in theme configuration and plugins page. For fetching the wp users roles you can use the following code.
[php] $roles_obj = new WP_Roles(); $roles_names_array = $roles_obj->get_names(); echo ‘<select name="role">’; foreach ($roles_names_array as $role_name) { echo…
View On WordPress
How to add the custom background functionality support to wordpress theme
How to add the custom background functionality support to wordpress theme
In new wordpress version we can add the background image or color to wordpress websites. Many older wp themes has no support for custom background functionality. You can very easily add the custom background support to your wordpress theme. You just need to copy following code and put in your functions.php file.
[php]
add_filter( ‘body_class’, ‘wpapi_body_class’ ); function wpapi_body_class(…
View On WordPress
How To Change The Default Genesis Favicon [VIDEO]
We just published a new post at HTWP2.0 on How To Change The Default Genesis Favicon on your site.
Here’s a brief excerpt from it:
If you are using the Genesis Theme Framework, like we are, and don’t have a custom favicon you are missing out on a great branding opportunity for your site. The Genesis theme’s default “G” favicon is to identify them and their …