Skip to main content

Deproverbio.Com

Deproverbio.Com By Abhinesh Tripathi
Deproverbio.Com ,Developed By Abhinesh Tripathi

Technology /CMS       :   WordPress
Task                             :   Html/PHP To WordPress Conversion
Client                           :   Teodor
Special                        :   Pod casting Website
Website Link              :   https://deproverbio.com/



A website which has more then 500 pages and a more then 100 mp3 files needs to be developed on WordPress. This job was successfully completed. Client is an famous book writer. Please visit to https://deproverbio.com/  to have a look of my work.

Comments

Popular posts from this blog

GondaInfo. In

Gonda is a city and municipal board of Gonda district in the Indian state of Uttar Pradesh. It is situated 120 km north east of the state capital Lucknow. Gonda is divided into four tahsils named Gonda, Colonelganj, Tarabganj and Mankapur. Gonda Info website is developed to list each and every thing of Gonda to be known by the world. It's recommended to visit your own website of Gonda and help us to make it better. Website Link :  http://gondainfo.in/   Pagespeed  Score :  https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fgondainfo.in%2F

Time Saver Mobile Auto Detailing

Website Link : http://timesavermobiledetail.com/ Blog Link       : http://blog.timesavermobiledetail.com/ Developed By : Abhinesh Tripathi Client : Alex About Website :  People often wish that they could encase their vehicles, boats, aircraft in a bubble to protect them from the ravages of the environment. They would like to shield one of life's major investments from oxidation, tree sap, salt water, pollen, highway tar or the dreaded love bugs. Or they may have a desire for their vehicles' paint to look new again after a mnor parking lot scrape or fender bender, or maybe just a paint correction is needed. Timesaver Mobile Detail, LLC is proud to offer Auto Detailing to Lafayette, LA.

How to get random Tags of WordPress?

To get the random tags of WordPress you just need to make a function like below and save it in your themes/child-themes functions.php file. Have a look of below code-- function random_tag_abhinesh(){ $a=get_the_title(); //search the tag by the order of first letter of page title ex- page title is A then the tags which is started from letter A $a = strtolower($a); $tags = get_tags(array( 'hide_empty' => false, 'orderby' =>'count' )); shuffle($tags); foreach ($tags as $tag ) { if(strtolower(substr($tag->name,0,1)) !=$a){ continue; }?> <a class="link-of-tag" href="<?php echo get_tag_link( $tag->term_id ) ?>"> <div class="name-of-tag"><?php echo $tag->name ?></div></a>