Google Sitemap by BestWebSoft - Version 1.08

Version Description

  • 03.04.2012 =
  • NEW: Added a possibility to include links on the selected post types to the sitemap.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Sitemap by BestWebSoft
Version 1.08
Comparing to
See all releases

Code changes from version 1.07 to 1.08

google-sitemap-plugin.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google sitemap plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin to add google sitemap file in google webmaster tools account.
6
  Author: BestWebSoft
7
- Version: 1.07
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -131,8 +131,14 @@ if( ! function_exists( 'gglstmp_add_pages' ) ) {
131
  //============================================ Function for creating sitemap file ====================
132
  if( ! function_exists( 'gglstmp_sitemapcreate' ) ) {
133
  function gglstmp_sitemapcreate() {
134
- global $wpdb;
135
- $loc = $wpdb->get_results( "SELECT ID, post_modified, post_status, post_type, ping_status FROM $wpdb->posts WHERE post_status = 'publish' AND ping_status = 'open' AND post_type <> 'nav_menu_item'" );
 
 
 
 
 
 
136
  $xml = new DomDocument('1.0','utf-8');
137
  $xml_stylesheet_path = "wp-content/plugins/google-sitemap-plugin/sitemap.xsl";
138
  $xslt = $xml->createProcessingInstruction( 'xml-stylesheet', "type=\"text/xsl\" href=\"$xml_stylesheet_path\"" );
@@ -157,11 +163,52 @@ if( ! function_exists( 'gglstmp_sitemapcreate' ) ) {
157
  }
158
  }
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  //============================================ Function for creating setting page ====================
161
  if ( !function_exists ( 'gglstmp_settings_page' ) ) {
162
  function gglstmp_settings_page () {
163
- global $url_home;
164
- global $url;
165
  $url_robot = ABSPATH . "robots.txt";
166
  $url_sitemap = ABSPATH . "sitemap.xml";
167
  $message = "";
@@ -169,6 +216,12 @@ if ( !function_exists ( 'gglstmp_settings_page' ) ) {
169
  $message = __( "Your sitemap file was created in the root directory of the site. ", 'sitemap' );
170
  gglstmp_sitemapcreate();
171
  }
 
 
 
 
 
 
172
  ?>
173
  <div class="wrap">
174
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
@@ -203,6 +256,17 @@ if ( !function_exists ( 'gglstmp_settings_page' ) ) {
203
  <input type='checkbox' name='gglstmp_checkbox' value="1" /> <label for="gglstmp_checkbox"><?php _e( "I want to add sitemap file path in robots.txt", 'sitemap' );?></label>
204
  </td>
205
  </tr>
 
 
 
 
 
 
 
 
 
 
 
206
  <?php if ( $curl_exist == 1 ) { ?>
207
  <tr valign="top">
208
  <td colspan="2">
@@ -221,6 +285,7 @@ if ( !function_exists ( 'gglstmp_settings_page' ) ) {
221
  </tr>
222
  <?php } ?>
223
  </table>
 
224
  <p class="submit">
225
  <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
226
  </p>
@@ -456,6 +521,11 @@ if ( ! function_exists ( 'gglstmp_plugin_init' ) ) {
456
  }
457
  }
458
 
 
 
 
 
 
459
  add_action( 'admin_enqueue_scripts', 'gglstmp_add_my_stylesheet' );
460
  add_action( 'wp_enqueue_scripts', 'gglstmp_add_my_stylesheet' );
461
  add_action( 'admin_init', 'gglstmp_plugin_init' );
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin to add google sitemap file in google webmaster tools account.
6
  Author: BestWebSoft
7
+ Version: 1.08
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
131
  //============================================ Function for creating sitemap file ====================
132
  if( ! function_exists( 'gglstmp_sitemapcreate' ) ) {
133
  function gglstmp_sitemapcreate() {
134
+ global $wpdb, $gglstmp_settings;
135
+ $str = "";
136
+ foreach( $gglstmp_settings as $val ) {
137
+ if( $str != "")
138
+ $str .= ", ";
139
+ $str .= "'".$val."'";
140
+ }
141
+ $loc = $wpdb->get_results( "SELECT ID, post_modified, post_status, post_type, ping_status FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN (" . $str . ")" );
142
  $xml = new DomDocument('1.0','utf-8');
143
  $xml_stylesheet_path = "wp-content/plugins/google-sitemap-plugin/sitemap.xsl";
144
  $xslt = $xml->createProcessingInstruction( 'xml-stylesheet', "type=\"text/xsl\" href=\"$xml_stylesheet_path\"" );
163
  }
164
  }
165
 
166
+ if( ! function_exists( 'register_gglstmp_settings' ) ) {
167
+ function register_gglstmp_settings() {
168
+ global $wpmu, $gglstmp_settings;
169
+
170
+ $gglstmp_option_defaults = array( 'page', 'post' );
171
+
172
+ if ( 1 == $wpmu ) {
173
+ if( ! get_site_option( 'gglstmp_settings' ) ) {
174
+ add_site_option( 'gglstmp_settings', $gglstmp_option_defaults );
175
+ }
176
+ }
177
+ else {
178
+ if( ! get_option( 'gglstmp_settings' ) )
179
+ add_option( 'gglstmp_settings', $gglstmp_option_defaults );
180
+ }
181
+
182
+ if ( 1 == $wpmu )
183
+ $gglstmp_settings = get_site_option( 'gglstmp_settings' );
184
+ else
185
+ $gglstmp_settings = get_option( 'gglstmp_settings' );
186
+ }
187
+ }
188
+
189
+ if( ! function_exists( 'delete_gglstmp_settings' ) ) {
190
+ function delete_gglstmp_settings() {
191
+ delete_option( 'gglstmp_settings' );
192
+ }
193
+ }
194
+
195
+ if( ! function_exists( 'gglstmp_settings_global' ) ) {
196
+ function gglstmp_settings_global() {
197
+ global $wpmu, $gglstmp_settings;
198
+ $gglstmp_option_defaults = array( 'page', 'post' );
199
+ $gglstmp_settings = array();
200
+ if ( 1 == $wpmu )
201
+ $gglstmp_settings = get_site_option( 'gglstmp_settings' );
202
+ else
203
+ $gglstmp_settings = get_option( 'gglstmp_settings' );
204
+ $gglstmp_settings = array_merge( $gglstmp_option_defaults, $gglstmp_settings );
205
+ }
206
+ }
207
+
208
  //============================================ Function for creating setting page ====================
209
  if ( !function_exists ( 'gglstmp_settings_page' ) ) {
210
  function gglstmp_settings_page () {
211
+ global $url_home, $gglstmp_settings, $url, $wpdb;
 
212
  $url_robot = ABSPATH . "robots.txt";
213
  $url_sitemap = ABSPATH . "sitemap.xml";
214
  $message = "";
216
  $message = __( "Your sitemap file was created in the root directory of the site. ", 'sitemap' );
217
  gglstmp_sitemapcreate();
218
  }
219
+ if( isset( $_REQUEST['gglstmp_submit'] ) ) {
220
+ $gglstmp_settings = isset( $_REQUEST['gglstmp_settings'] ) ? $_REQUEST['gglstmp_settings'] : array() ;
221
+ update_option( 'gglstmp_settings', $gglstmp_settings );
222
+ $message .= __( "Options saved." , 'sitemap' );
223
+ }
224
+ $gglstmp_result = $wpdb->get_results( "SELECT post_type FROM ". $wpdb->posts ." WHERE post_type NOT IN ( 'revision', 'attachment', 'nav_menu_item' ) GROUP BY post_type" );
225
  ?>
226
  <div class="wrap">
227
  <div class="icon32 icon32-bws" id="icon-options-general"></div>
256
  <input type='checkbox' name='gglstmp_checkbox' value="1" /> <label for="gglstmp_checkbox"><?php _e( "I want to add sitemap file path in robots.txt", 'sitemap' );?></label>
257
  </td>
258
  </tr>
259
+ <tr valign="top">
260
+ <th scope="row" colspan="2"><?php _e( 'Please choose the necessary post types in order to add the links to them in the sitemap:', 'sitemap' ); ?> </th>
261
+ </tr>
262
+ <tr valign="top">
263
+ <td colspan="2">
264
+ <?php
265
+ foreach ( $gglstmp_result as $key => $value ) { ?>
266
+ <input type="checkbox" <?php echo ( in_array( $value->post_type, $gglstmp_settings ) ? 'checked="checked"' : "" ); ?> name="gglstmp_settings[]" value="<?php echo $value->post_type; ?>"/><span style="text-transform: capitalize; padding-left: 5px;"><?php echo $value->post_type; ?></span><br />
267
+ <?php } ?>
268
+ </td>
269
+ </tr>
270
  <?php if ( $curl_exist == 1 ) { ?>
271
  <tr valign="top">
272
  <td colspan="2">
285
  </tr>
286
  <?php } ?>
287
  </table>
288
+ <input type="hidden" name="gglstmp_submit" value="submit" />
289
  <p class="submit">
290
  <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
291
  </p>
521
  }
522
  }
523
 
524
+ register_activation_hook( __FILE__, 'register_gglstmp_settings'); // activate plugin
525
+ register_uninstall_hook( __FILE__, 'delete_gglstmp_settings'); // uninstall plugin
526
+
527
+ add_action( 'init', 'gglstmp_settings_global' );
528
+
529
  add_action( 'admin_enqueue_scripts', 'gglstmp_add_my_stylesheet' );
530
  add_action( 'wp_enqueue_scripts', 'gglstmp_add_my_stylesheet' );
531
  add_action( 'admin_init', 'gglstmp_plugin_init' );
languages/sitemap-ru_RU.mo CHANGED
Binary file
languages/sitemap-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-02 12:22+0200\n"
6
- "PO-Revision-Date: 2012-04-02 12:23+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgid "Read more"
27
  msgstr "Подробнее..."
28
 
29
  #: google-sitemap-plugin.php:88
30
- #: google-sitemap-plugin.php:446
31
  msgid "Settings"
32
  msgstr "Настройки"
33
 
@@ -68,120 +68,128 @@ msgstr "Опции карты сайта Google"
68
  msgid "Google Sitemap"
69
  msgstr "Карта сайта Google"
70
 
71
- #: google-sitemap-plugin.php:169
72
- #: google-sitemap-plugin.php:184
73
  msgid "Your sitemap file was created in the root directory of the site. "
74
  msgstr "Карта сайта для вашего сайта создана в корне основной директории."
75
 
76
- #: google-sitemap-plugin.php:175
 
 
 
 
77
  msgid "Google Sitemap options"
78
  msgstr "Опции карты сайта Google"
79
 
80
- #: google-sitemap-plugin.php:180
81
  msgid "The sitemap file is already exists. If you want to change it for a new sitemap file check the necessary box below. In other case all actions will be performed over an existing file."
82
  msgstr "Карта сайта уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
83
 
84
- #: google-sitemap-plugin.php:187
85
  msgid "If you don't want to add this file automatically you may go through"
86
  msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google webmaster tools, Вы можете сделать это через"
87
 
88
- #: google-sitemap-plugin.php:187
89
  msgid "this"
90
  msgstr "эту"
91
 
92
- #: google-sitemap-plugin.php:187
93
  msgid "link, sign in, select necessary site, select 'Sitemaps' and type in necessary field"
94
  msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
95
 
96
- #: google-sitemap-plugin.php:189
97
  msgid "This hosting doesn't support CURL, so you can't add sitemap file automatically"
98
  msgstr "Ваш хостинг не поддерживает CURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
99
 
100
- #: google-sitemap-plugin.php:198
101
  msgid "I want to create new sitemap file"
102
  msgstr "Я хочу создать новую карту сайта"
103
 
104
- #: google-sitemap-plugin.php:203
105
  msgid "I want to add sitemap file path in robots.txt"
106
  msgstr "Я хочу добавить карту сайта в robots.txt"
107
 
108
- #: google-sitemap-plugin.php:209
 
 
 
 
109
  msgid "Type here your login and password from google webmaster tools account to add or delete site and sitemap file automatically or to get information about this site in google webmaster tools."
110
  msgstr "Введите сюда свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google webmaster tools"
111
 
112
- #: google-sitemap-plugin.php:213
113
  msgid "Settings for remote work with google webmaster tools"
114
  msgstr "Настройки для удаленной работы с google webmaster tools"
115
 
116
- #: google-sitemap-plugin.php:215
117
  msgid "Login"
118
  msgstr "Логин"
119
 
120
- #: google-sitemap-plugin.php:216
121
  msgid "Password"
122
  msgstr "Пароль"
123
 
124
- #: google-sitemap-plugin.php:217
125
  msgid "I want to add this site to the google webmaster tools"
126
  msgstr "Я хочу добавить этот сайт в Google webmaster tools"
127
 
128
- #: google-sitemap-plugin.php:218
129
  msgid "I want to delete this site from google webmaster tools"
130
  msgstr "Я хочу удалить этот сайт из Google webmaster tools"
131
 
132
- #: google-sitemap-plugin.php:219
133
  msgid "I want to get info about this site in google webmaster tools"
134
  msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
135
 
136
- #: google-sitemap-plugin.php:225
137
  msgid "Save Changes"
138
  msgstr "Сохранить изменения"
139
 
140
- #: google-sitemap-plugin.php:260
141
  msgid "You must enter login and password"
142
  msgstr "Вы должны ввести логин и пароль"
143
 
144
- #: google-sitemap-plugin.php:263
145
  msgid "You must choose at least one action"
146
  msgstr "Вы должны выбрать одно из действий"
147
 
148
- #: google-sitemap-plugin.php:293
149
  msgid "Login and password don\\'t match, try again, please"
150
  msgstr "Логин и пароль введены неправильно, попробуйте еще раз"
151
 
152
- #: google-sitemap-plugin.php:352
153
  msgid "Info about this site in google webmaster tools"
154
  msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
155
 
156
- #: google-sitemap-plugin.php:354
157
  msgid "This site is not added to the google webmaster tools account"
158
  msgstr "Я хочу добавить этот сайт в Google webmaster tools"
159
 
160
- #: google-sitemap-plugin.php:375
161
  msgid "Site url: "
162
  msgstr "Урл сайта:"
163
 
164
- #: google-sitemap-plugin.php:376
165
  msgid "Site verification: "
166
  msgstr "Верификация сайта:"
167
 
168
- #: google-sitemap-plugin.php:378
169
  msgid "verificated"
170
  msgstr "верифицровано"
171
 
172
- #: google-sitemap-plugin.php:380
173
  msgid "non verificated"
174
  msgstr "не верефицирован"
175
 
176
- #: google-sitemap-plugin.php:381
177
  msgid "Sitemap file: "
178
  msgstr "Файл карты сайта:"
179
 
180
- #: google-sitemap-plugin.php:383
181
  msgid "added"
182
  msgstr "добавлен"
183
 
184
- #: google-sitemap-plugin.php:385
185
  msgid "not added"
186
  msgstr "не добавлен"
187
 
2
  msgstr ""
3
  "Project-Id-Version: google-sitemap-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-04-03 16:23+0200\n"
6
+ "PO-Revision-Date: 2012-04-03 16:28+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
27
  msgstr "Подробнее..."
28
 
29
  #: google-sitemap-plugin.php:88
30
+ #: google-sitemap-plugin.php:511
31
  msgid "Settings"
32
  msgstr "Настройки"
33
 
68
  msgid "Google Sitemap"
69
  msgstr "Карта сайта Google"
70
 
71
+ #: google-sitemap-plugin.php:216
72
+ #: google-sitemap-plugin.php:237
73
  msgid "Your sitemap file was created in the root directory of the site. "
74
  msgstr "Карта сайта для вашего сайта создана в корне основной директории."
75
 
76
+ #: google-sitemap-plugin.php:222
77
+ msgid "Options saved."
78
+ msgstr "Опции сохранены."
79
+
80
+ #: google-sitemap-plugin.php:228
81
  msgid "Google Sitemap options"
82
  msgstr "Опции карты сайта Google"
83
 
84
+ #: google-sitemap-plugin.php:233
85
  msgid "The sitemap file is already exists. If you want to change it for a new sitemap file check the necessary box below. In other case all actions will be performed over an existing file."
86
  msgstr "Карта сайта уже существует. Если вы хотите изменить ее на новую карту сайта, выберите соответствующее действие внизу. Все остальные действия перезапишут существующий файл."
87
 
88
+ #: google-sitemap-plugin.php:240
89
  msgid "If you don't want to add this file automatically you may go through"
90
  msgstr "Если вы не хотите добавить файл карты сайта автоматически в Google webmaster tools, Вы можете сделать это через"
91
 
92
+ #: google-sitemap-plugin.php:240
93
  msgid "this"
94
  msgstr "эту"
95
 
96
+ #: google-sitemap-plugin.php:240
97
  msgid "link, sign in, select necessary site, select 'Sitemaps' and type in necessary field"
98
  msgstr "ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить обязательное поле"
99
 
100
+ #: google-sitemap-plugin.php:242
101
  msgid "This hosting doesn't support CURL, so you can't add sitemap file automatically"
102
  msgstr "Ваш хостинг не поддерживает CURL, поэтому вы не можете добавить карту сайта в Google аккаунт автоматически."
103
 
104
+ #: google-sitemap-plugin.php:251
105
  msgid "I want to create new sitemap file"
106
  msgstr "Я хочу создать новую карту сайта"
107
 
108
+ #: google-sitemap-plugin.php:256
109
  msgid "I want to add sitemap file path in robots.txt"
110
  msgstr "Я хочу добавить карту сайта в robots.txt"
111
 
112
+ #: google-sitemap-plugin.php:260
113
+ msgid "Please choose the necessary post types in order to add the links to them in the sitemap:"
114
+ msgstr "Пожалуйста, выберите те типы постов, ссылки на которые будут добавлены в карту сайта:"
115
+
116
+ #: google-sitemap-plugin.php:273
117
  msgid "Type here your login and password from google webmaster tools account to add or delete site and sitemap file automatically or to get information about this site in google webmaster tools."
118
  msgstr "Введите сюда свой логин и пароль для Google аккаунта, чтобы иметь возможность добавлять или удалять сайт и карту сайта автоматически в ваш аккаунт или же получить информацию об этом сайте из Google webmaster tools"
119
 
120
+ #: google-sitemap-plugin.php:277
121
  msgid "Settings for remote work with google webmaster tools"
122
  msgstr "Настройки для удаленной работы с google webmaster tools"
123
 
124
+ #: google-sitemap-plugin.php:279
125
  msgid "Login"
126
  msgstr "Логин"
127
 
128
+ #: google-sitemap-plugin.php:280
129
  msgid "Password"
130
  msgstr "Пароль"
131
 
132
+ #: google-sitemap-plugin.php:281
133
  msgid "I want to add this site to the google webmaster tools"
134
  msgstr "Я хочу добавить этот сайт в Google webmaster tools"
135
 
136
+ #: google-sitemap-plugin.php:282
137
  msgid "I want to delete this site from google webmaster tools"
138
  msgstr "Я хочу удалить этот сайт из Google webmaster tools"
139
 
140
+ #: google-sitemap-plugin.php:283
141
  msgid "I want to get info about this site in google webmaster tools"
142
  msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
143
 
144
+ #: google-sitemap-plugin.php:290
145
  msgid "Save Changes"
146
  msgstr "Сохранить изменения"
147
 
148
+ #: google-sitemap-plugin.php:325
149
  msgid "You must enter login and password"
150
  msgstr "Вы должны ввести логин и пароль"
151
 
152
+ #: google-sitemap-plugin.php:328
153
  msgid "You must choose at least one action"
154
  msgstr "Вы должны выбрать одно из действий"
155
 
156
+ #: google-sitemap-plugin.php:358
157
  msgid "Login and password don\\'t match, try again, please"
158
  msgstr "Логин и пароль введены неправильно, попробуйте еще раз"
159
 
160
+ #: google-sitemap-plugin.php:417
161
  msgid "Info about this site in google webmaster tools"
162
  msgstr "Я хочу получить информацию об этом сайте из Google webmaster tools"
163
 
164
+ #: google-sitemap-plugin.php:419
165
  msgid "This site is not added to the google webmaster tools account"
166
  msgstr "Я хочу добавить этот сайт в Google webmaster tools"
167
 
168
+ #: google-sitemap-plugin.php:440
169
  msgid "Site url: "
170
  msgstr "Урл сайта:"
171
 
172
+ #: google-sitemap-plugin.php:441
173
  msgid "Site verification: "
174
  msgstr "Верификация сайта:"
175
 
176
+ #: google-sitemap-plugin.php:443
177
  msgid "verificated"
178
  msgstr "верифицровано"
179
 
180
+ #: google-sitemap-plugin.php:445
181
  msgid "non verificated"
182
  msgstr "не верефицирован"
183
 
184
+ #: google-sitemap-plugin.php:446
185
  msgid "Sitemap file: "
186
  msgstr "Файл карты сайта:"
187
 
188
+ #: google-sitemap-plugin.php:448
189
  msgid "added"
190
  msgstr "добавлен"
191
 
192
+ #: google-sitemap-plugin.php:450
193
  msgid "not added"
194
  msgstr "не добавлен"
195
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bestwebsoft.com/
4
  Tags: sitemap, google sitemap, google api, google webmaster tools, stmap, gogle sitemap, sitemp, google api sitemap, api sitemap, webmaster sitemap, webmaster tols, google stmp
5
  Requires at least: 2.9
6
  Tested up to: 3.3.1
7
- Stable tag: 1.07
8
 
9
  This plugin allows you to add sitemap file to google webmaster tools.
10
 
@@ -12,6 +12,16 @@ This plugin allows you to add sitemap file to google webmaster tools.
12
 
13
  Google sitemap plugin allows you to create and add sitemap file to google webmaster tools, get info about your site in google webmaster tools.
14
 
 
 
 
 
 
 
 
 
 
 
15
  == Installation ==
16
 
17
  1. Upload `google sitemap` folder to the `/wp-content/plugins/` directory.
@@ -57,10 +67,13 @@ In the WordPress admin panel go to "Plugins", find "Google sitemap" plugin and p
57
 
58
  == Changelog ==
59
 
60
- = 1.07 - 02.04.2012 =
 
 
 
61
  * Bugfix: CURL and save setting errors were fixed.
62
 
63
- = 1.06 - 26.03.2012 =
64
  * New: Added language files for plugin.
65
 
66
  = 1.05 =
@@ -80,6 +93,9 @@ In the WordPress admin panel go to "Plugins", find "Google sitemap" plugin and p
80
 
81
  == Upgrade Notice ==
82
 
 
 
 
83
  = 1.07 =
84
  CURL and save setting errors were fixed.
85
 
4
  Tags: sitemap, google sitemap, google api, google webmaster tools, stmap, gogle sitemap, sitemp, google api sitemap, api sitemap, webmaster sitemap, webmaster tols, google stmp
5
  Requires at least: 2.9
6
  Tested up to: 3.3.1
7
+ Stable tag: 1.08
8
 
9
  This plugin allows you to add sitemap file to google webmaster tools.
10
 
12
 
13
  Google sitemap plugin allows you to create and add sitemap file to google webmaster tools, get info about your site in google webmaster tools.
14
 
15
+ = Translation =
16
+
17
+ * Russian (ru_RU)
18
+
19
+ If you create your own language pack or update an existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank"> text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
20
+
21
+ = Technical support =
22
+
23
+ Dear users, if you have any questions or propositions regarding our plugins (current options, new options, current issues) please feel free to contact us. Please note that we accept requests in English only. All messages on another languages wouldn't be accepted.
24
+
25
  == Installation ==
26
 
27
  1. Upload `google sitemap` folder to the `/wp-content/plugins/` directory.
67
 
68
  == Changelog ==
69
 
70
+ = V1.08 - 03.04.2012 =
71
+ * NEW: Added a possibility to include links on the selected post types to the sitemap.
72
+
73
+ = V1.07 - 02.04.2012 =
74
  * Bugfix: CURL and save setting errors were fixed.
75
 
76
+ = V1.06 - 26.03.2012 =
77
  * New: Added language files for plugin.
78
 
79
  = 1.05 =
93
 
94
  == Upgrade Notice ==
95
 
96
+ = V1.08 =
97
+ Added a possibility to include links on the selected post types to the sitemap.
98
+
99
  = 1.07 =
100
  CURL and save setting errors were fixed.
101
 
screenshot-1.jpg CHANGED
Binary file
screenshot-2.jpg CHANGED
Binary file