Category: wordpress
Can I change my theme after Aproval of Adsense?
Adsense is one of the best ad agency that I have ever seen. I am using adsense to earn revenue for more than 2 years….
HOW TO DISPLAY ALT IMAGE AND CAPTION OF IMAGE IN WORDPRESS THEME DEVELOPMENT?
Alt is crucial part of SEO because it describe the image for engines and screen readers. whereas, the caption is optional and can be used…
EXCERPT SIMPLIFIED IN WORDPRESS THEME DEVELOPMENT
Excerpt is the short form of the whole article. If you want to get the whole article inside the loop you need to echo the…
DISPLAY CATEGORY LIST OF POST IN WORDPRESS DEVELOPMENT.
In wordpress there can be more than one category. Thus it has to be kept in unordered list <ul> . The php command get_the_category() gives…
CUSTOM LOGO IN WORDPRESS DEVELOPMENT .
Custom Logo is your Brand Logo which is shown usually above or on navbar. During the development of wordpress theme, you need to setup the…
How To display Favicon, Site Title and Tagline on wordpress development?
What is site Icon?It is small icon on the tab bar of your websiteWhat is title and tagline?They are name and short description on title…
How to add Features in WordPress using add_theme_support Function
While developing wordpress theme, you wont get section to add post image. So you need to add the following codes to function.php To display thumbnail…
HOW TO SHOW NUMBER OF VIEW (VIEW COUNT) IN WORDPRESS? [for wordpress developer]
HOW TO SHOW NUMBER OF VIEW (VIEW COUNT) IN WORDPRESS? [for wordpress developer]
DATE AND TIME IN WORDPRESS DEVELOPMENT
The symbol hereY: full year (2020)y: short form of year (20)m: numerical form of month (7)M: Alphabetical form of Month (July)d: date (16)D: short form…
HOW TO REGISTER NAV MENU IN WORDPRESS?
The easiest way to add the nav manu in the dashboard is by using “register_nav_menus()” function and hook in the functions.phpThe syntax is as follow:…