get custom post by acf custom field value
To get custom posts by meta field value: $args =…
Read Article16 articles found
To get custom posts by meta field value: $args =…
Read ArticleAdd script after page scroll: Copy and paste following code into your js file and add your script to addscriptfunc…
Read ArticleCreate a custom elementor widget with section and multiple elementor controls: Follow the below instruction: 1. Copy and paste the…
Read ArticleIncrease/Reset and manage jwt token expirattion time in wordpress using filter. Use jwt_auth_token_before_sign filter for managing JWT token. add_filter( 'jwt_auth_token_before_sign',…
Read ArticleAdvertisement
Copy and Paste the following code for creating a custom popup with html/css and js or download the file click…
Read Articlecopy or paste the below code into functions.php file add_action( 'init', 'user_role_permision'); function user_role_permision() { …
Read Article1. Copy the below code and paste into footer.php or any js file. jQuery('.show-more-posts-btn').on('click',function(){ …
Read Article1. Open function.php file and paste the below code to deined wordpress ajaxurl /*defined ajax url*/ add_action('wp_head', 'wordpress_frontend_ajaxurl'); function wordpress_frontend_ajaxurl()…
Read ArticleAdvertisement
Create a New WordPress user without admin login through function.php file. Follow the below steps to create a user –…
Read Article//create new Admin User in WordPress add_action('init','create_new_admin_user'); function create_new_admin_user(){ $user = 'your username'; $pass = 'Password'; $email…
Read Article