// Check document.getElementById(“checkbox”).checked = true; // Uncheck document.getElementById(“checkbox”).checked = false; jQuery (1.6+): // Check $(“#checkbox”).prop(“checked”, true); // Uncheck $(“#checkbox”).prop(“checked”, false); jQuery (1.5-): // Check $(“#checkbox”).attr(“checked”,… Read More →

Change post thumbnail size To change post thumbnail size, First check your theme support function add_theme_support(‘post-thumbnails’); Default WordPress Thumbnail the_post_thumbnail( ‘thumbnail’ ); // Thumbnail (150… Read More →

Export to CSV via PHP

July 23, 2022

Export to CSV via PHP Use the following command <?php $list = array ( array(‘aaa’, ‘bbb’, ‘ccc’, ‘dddd’), array(‘123’, ‘456’, ‘789’), array(‘”aaa”‘, ‘”bbb”‘) ); $fp… Read More →