/** Don’t allow date to be selected after maxDate Original doc link: https://wpforms.com/developers/customize-the-date-time-field-date-options/ For support, please visit: https://www.facebook.com/groups/wpformsvip */ function wpf_dev_limit_date_picker() { ?>Continue reading
/* Modify the login URL to redirect to a custom login page. Original doc link: https://wpforms.com/how-to-create-a-custom-login-form-for-improved-site-branding/ For support, please visit: https://www.facebook.com/groups/wpformsvip */ function sulliesflowers_custom_login_url( $login_url, $redirect, $force_reauth ) { // Change here your login page url $login_url = ‘https://sulliesflowers.com/login/’; if…Continue reading
function enqueue_admin_reorder_scripts() { global $pagenow; // Ensure the script is not loaded on the plugins page if ($pagenow !== ‘plugins.php’) { wp_enqueue_script(‘jquery-ui-sortable’); wp_add_inline_script(‘jquery-ui-sortable’, ‘ jQuery(document).ready(function($) { var $sortableList = $(“#the-list”); var postType = $(“body”).attr(“class”).match(/post-type-([^\s]+)/)[1]; $sortableList.sortable({ update: function(event, ui) { var…Continue reading
function generate_and_publish_post() { $api_key = ‘skprojXVTIVxQQ5Ehpxp775DRhT3BlbkFJcdNbKiiJVJUGkqJGmBYu’; $unsplash_api_key = ‘6Nw90BNuEg5uEnRmMqpw05JLdTQ8onddGfA5e_XYlmQ’; $youtube_api_key = ‘AIzaSyC1tv1pocoHLfHtPAMsOykbLjmgdNwxaf0’; $wp_token = ‘eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczovL3RlY2hub3ZlZGFkZXMuY29tIiwiaWF0IjoxNzE2MDY0Mjg5LCJuYmYiOjE3MTYwNjQyODksImV4cCI6MTcxNjY2OTA4OSwiZGF0YSI6eyJ1c2VyIjp7ImlkIjoiMSJ9fX0.SwHK1aGMTveqMnTZN04UKiFtHMZuN1312PHWYzWklv0’; $wp_username = ‘charlyl’; $wp_password = ‘L1910901$’; $topics = array( ‘tecnologia’, ‘salud y bienestar’, ‘desarrollo personal’, ‘finanzas personales’, ‘viajes y turismo’ ); $tema = $topics[array_rand($topics)]; //…Continue reading
$u_time = get_the_time( ‘U’ ); $u_modified_time = get_the_modified_time( ‘U’ ); // Only display modified date if 24hrs have passed since the post was published. if ( $u_modified_time >= $u_time + 86400 ) { $updated_date = get_the_modified_time( ‘F jS, Y’ );…Continue reading