Profile Topics Started Replies Created Engagements Favorites Search replies: Forum Replies Created Viewing 5 posts - 1 through 5 (of 5 total) Author Posts October 3, 2024 at 12:20 pm in reply to: How to upload .webp file in CodeIgniter #161 avneeshParticipant Add webp MIME Type in config file: ./application/config/mimes.php. 'webp' => array('image/webp'), And in your upload config “allowed_types” add “webp” : $config['allowed_types'] = 'gif|jpg|jpeg|png|webp'; October 3, 2024 at 11:50 am in reply to: Avoid Current Post from Recent Posts List #145 avneeshParticipant Add post__not_in in your array : $post = get_post(); get_posts( array( 'post__not_in' => array( $post->ID ), )); This reply was modified 1 month ago by softechquery. October 3, 2024 at 11:46 am in reply to: How to get custom field name in wordpress #141 avneeshParticipant You can use get_field() function for print custom field title echo get_field("custom_title", $results->ID); October 3, 2024 at 10:43 am in reply to: Create new column with Existing value on other column in MySQL #113 avneeshParticipant Step 1: Add new Column ALTER TABLE long_holiday ADD (duplicate_date DATE); Step 2: Update new Column with existing value UPDATE long_holiday SET duplicate_date = STR_TO_DATE(start_date , '%d-%m-%Y'); September 27, 2024 at 12:43 pm in reply to: How to change a box rounded only from left and right side #99 avneeshParticipant Add this CSS in your div : – border-radius: 999px; Author Posts Viewing 5 posts - 1 through 5 (of 5 total)