How to use if statement in an array? [closed]

Try this Omer $fields = array( ‘author’ => ‘<div class=”form-group”><input class=”form-control” id=”author” name=”author” type=”text” placeholder=”Name ‘.( $req ? ‘*’ : ” ) .'” value=”‘ . esc_attr( $commenter[‘comment_author’] ) . ‘” ‘ . $aria_req . ‘ /></div>’, ’email’ => ‘<div class=”form-group”><input class=”form-control” id=”email” name=”email” type=”text” placeholder=”E-mail ‘.( $req ? ‘*’ : ” ) .'” value=”‘ . … Read more

How to fix this warning:call_user_func_array() expects exactly 2 parameters, 1 given in D:\wamp\www\…….\wp-includes\class-wp-hook.php on line 286

Replace ‘call_user_func_array’ with name of the function to be called to output the page content. add_action(‘admin_menu’, ‘personalised_menu’); function personalised_menu() { add_menu_page( ‘Page Title’, ‘Blog’, ‘edit_posts’, ‘menu_slug’, ‘display_main_page’, ‘dashicons-welcome-write-blog’ ); add_submenu_page( ‘menu_slug’, ‘Add New Page’, ‘Add New’, ‘edit_posts’,’add_new_page’, ‘display_secondary_page’ ); } function display_main_page() { echo ‘Content of “Page Title”‘; } function display_secondary_page() { echo ‘Content of … Read more

Get an array wich contains the post_name of every post that has the custom post_type “pelicula”

<?php // query for your post type $post_type_query = new WP_Query( array ( ‘post_type’ => ‘pelicula’, ‘posts_per_page’ => -1 ) ); // we need the array of posts $posts_array = $post_type_query->posts; // create a list with needed information // the key equals the ID, the value is the post_title $post_title_array = wp_list_pluck( $posts_array, ‘post_title’, ‘ID’ … Read more

Array ids post to function have_post

If I understand it properly, You can use the post__in parameter to query for specific posts where the post ID is in that parameter: $ids = [ 1, 2, 3, 4, 5 ]; $query = new WP_Query( array( ‘post__in’ => $ids, // … other args, if any. ) ); // Then loop through the posts. … Read more