PHP

How to Disable WP JSON Rest API in WordPress without plugin ?

just add below code in wordpress theme function.php file at the bottom -------------------------------------------------- Add the following code to functions.php (anyone)…

2 years ago

open image in new popup window

<a href="javascript:void(0);" ><strong>View Image</strong> </a> <script> function openwin(file,Iwidth,Iheight) { var newWin1=window.open(file,'nWin2','x=0,y=0,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20'); } </script>

2 years ago

How to change date format in PHP?

to convert the date-time layout Hypertext Preprocessor presents strtotime() and date() feature. We trade the date format from one layout…

3 years ago

Get all days and dates for the selected month of a year using php

Try this code for following purpose Get all days and dates for the selected month of a year using phpHow…

3 years ago

How to show only 50 words using PHP

Try this code for following Pupose Php show only first 50 charactershow to show only 50 words using phpPhp limit…

3 years ago

How to show/hide an element on checkbox checked/unchecked states using jQuery?

Just use below code for following purpose How to show/hide an element on checkbox checked/unchecked states using jQuery?jquery show-hide div…

3 years ago

how to get checked checkbox value using jquery

You can use the jQuery :checked selector together with the each() method to retrieve the values of all checkboxes selected…

3 years ago

how to make seo friendly url using php

Utilizing URLs on your site that are program friendly is straight forward and straight forward to try to to because…

3 years ago

Click, download a file, and redirect to another page

Follow the below instruction and modify your code with my code <!DOCTYPE html> <html> <head> <title>Click, download file and redirect…

4 years ago