所以我准备好了一个页面模板。我想制作该页面的2000份。您将在此处看到的页面样本
hostvento.com/wordpress-hosting.php
我想为每个脚本创建页面,例如joomla hosting magento hosting等。
另外,我想在页面中替换脚本名称。这样做的最佳方法是什么?
我有list.txt文件,其中添加了所有页面名称。
任何插件或shell脚本都适用于这种情况。
答案 0 :(得分:1)
只是粗略的草图,但是像这样:
$post = get_post( YOUR_BASE_POST_ID )
$file = fopen( YOUR_TXT_FILE_PATH, "r");
while( ( $line = fgets( $file ) ) !== false ):
$handler = $post;
$handler['ID'] = 0;
$handler['post_title'] = $line;
wp_insert_post( $handler );
endwhile;
fclose( $file );
你可能需要调整其他一些字段或照顾postmeta ......但你明白了;)