WordPress WXR Specification

前端 未结 2 2065
无人及你
无人及你 2021-02-07 00:55

I\'m trying to find a spec for the WordPress WXR import/export standard and I\'m unable to find any official documentation from WordPress on the standard.

Does anyone kn

2条回答
  •  忘掉有多难
    2021-02-07 01:21

    For those without a WordPress export who nonetheless need to make a WXR file, the code for the exporter is on the WordPress plugins' Trac server. Excerpt below, from the node to a couple object foreach loops:

    
    
    
    
        <?php bloginfo_rss( 'name' ); ?>
        
        
        
        
        
        
        
    
    
    
    
        
            term_id ); ?>
            slug ); ?>
            parent ? $cats[$c->parent]->slug : '' ); ?>
            
        
    
    
        
            term_id ); ?>
            slug ); ?>
            
        
    
    
        
            term_id ); ?>
            taxonomy ); ?>
            slug ); ?>
            parent ? $terms[$t->parent]->slug : '' ); ?>
            
        
    
    

提交回复
热议问题