• Resolved roycegracie

    (@roycegracie)


    ??? ????. ???? ????? PLACEHOLDER ??? ????
    ??? ??? ??? ?? ???? ???? ????? ????. ?? ?? ??? ?? ???? 1000 ??????. ????? ????? ??? ??? ?? ??? ?????

    ???? ????? ??? ???? ??????? ??? ????? ????, ??? ?? ??? ?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter roycegracie

    (@roycegracie)

    ????? ???? ?????, ?????? ???? ? value

    ?? ?????? <?php echo esc_attr( $post->post_title ); ?>

    ?? ????? ?? ?? ?????, ?? ??? ???? ???????? ???. ?? ?????? ??? ???? ????? ??? ??? ?????? ?? ???? ??? ??? ????

    ?? ?? ?? ????? ??? ????, ????

    Plugin Author Ido Friedlander

    (@idofri)

    ???,

    ?????? ?????? ?-bulk ????? ???? ?????? ????? ??? ???? ????? ?????? ??? ??????.
    ????? ????? ?????? SQL ????? ????? ?? ????? ?? ????? ????? ????:

    UPDATE wp_postmeta a
    INNER JOIN wp_posts b on
    a.post_id=b.ID
    SET a.meta_value=b.post_title
    WHERE a.meta_key='_wc_zap_product_name'

    * ?? ????? ?? ?-db_prefix ??? ????? (_wp)

    ?? ??? ?? ???? ?????-??????? ???? ????? ?? ??????? ????????? php.

    ??????,
    @????

    Thread Starter roycegracie

    (@roycegracie)

    ???? ??? ??? !

    ???? ?? ??, ??? ???? ?? ??? ?? ???? ???? ???? ?????? ??.
    ????:
    _wc_zap_product_name

    ???? ??? ???? ?????
    _wp_zap_product_name

    ???? ?

    ?? ?? ???? ??, ??? ????? ???:
    https://prnt.sc/d8eov3

    Plugin Author Ido Friedlander

    (@idofri)

    ???,

    1) ??? ????.

    2) ????? ?? ???????? ???? ????? functions.php ?? ??????:

    function woo_zap_update_product_name() {
    	
    	if ( ! is_admin() ) {
    		return;
    	}
    	
    	$zap_query = new WP_Query( array( 'post_type' => 'product', 'posts_per_page' => -1 ) );
    	
    	if ( $zap_query->have_posts() ) {
    		
    		global $post;
    		
    		while ( $zap_query->have_posts() ) {
    			$zap_query->the_post();
    			update_post_meta( $post->ID, '_wc_zap_product_name', $post->post_title );
    		}
    	
    		wp_reset_postdata();
    	}
    }
    add_action( 'init', 'woo_zap_update_product_name' );

    @????

    Thread Starter roycegracie

    (@roycegracie)

    ???? ??? ?? ?????.

    ?????? ?? ?? ????? ????????, ?????? ?? ???? ?? ?? ?? ????.

    ?? ??????? ??????? ??? ??? ????? ?? “????”, ?? ??? ?? ????? ?? ????? ???? ???? ????

    Plugin Author Ido Friedlander

    (@idofri)

    ???? ????? ???? ???? ??????.

    Thread Starter roycegracie

    (@roycegracie)

    ????? ???? ?????? ???:
    https://bobwp.com/bulk-edit-posts-wordpress/

    ????? ?? ?? ????. ??? ?? ?? ?????? ???? ???? ??????? ?? ?????, ?? ??? ???? ?? ?????.

    ?? ?? ?? ????? ????, ??? ???? ???

    Plugin Author Ido Friedlander

    (@idofri)

    ?? ????? ?? ???????? ??? ?????, ??? ???? ??? ?? ?????.
    ???? ?????? ?? ???????? ?- idofri at gmail dot com

    Thread Starter roycegracie

    (@roycegracie)

    ???? ???.

    ???? ?? ???? ???

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘??? ?????? ????? ?? ??? ????? ??? ????? ???? ?’ is closed to new replies.