Support

Account

Home Forums Backend Issues (wp-admin) Permalink ACF Field Reply To: Permalink ACF Field

  • Hello thanks for reply. I try but now have a blank page.

    Thanks for information.

    I set this code:

    $idinsiede = get_cat_ID( $catprima[0]->cat_name); 
    
    $args = array(
        'meta_query' => array(
            'relation' => 'OR',
            array(
                'key' => 'url_field_past',
                'compare' => '=',
                'value' => ''
            ),
            array(
                'key' => 'url_field_past',
                'compare' => 'NOT EXISTS',
            )
        )
    );
    
    $the_posts = get_posts($args);
    
    echo <pre>;
    print_r($the_posts);
    
    global $args;
        $query = "SELECT count FROM $args->term_taxonomy WHERE term_id = $idinsiede";
        $num = $wpdb->get_col($query);
        $ins = $num[0]-1;

    Is it right?