web/wp-content/plugins/all-in-one-seo-pack/aioseop_functions.php
changeset 204 09a1c134465b
parent 194 32102edaa81b
equal deleted inserted replaced
203:f507feede89a 204:09a1c134465b
   347 	 	$keywords = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_keywords', true)));
   347 	 	$keywords = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_keywords', true)));
   348 	    	$title = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_title', true)));
   348 	    	$title = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_title', true)));
   349 		$description = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_description', true)));
   349 		$description = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_description', true)));
   350 	   	$aiosp_meta = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aiosp_meta', true)));
   350 	   	$aiosp_meta = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aiosp_meta', true)));
   351 	    	$aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_disable', true)));
   351 	    	$aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_disable', true)));
       
   352 	    	$aiosp_disable_analytics = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_disable_analytics', true)));
   352 	    	$aiosp_titleatr = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_titleatr', true)));
   353 	    	$aiosp_titleatr = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_titleatr', true)));
   353 	    	$aiosp_menulabel = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_menulabel', true)));	
   354 	    	$aiosp_menulabel = htmlspecialchars(stripcslashes(get_post_meta($post_id, '_aioseop_menulabel', true)));	
   354 		?>
   355 		?>
   355 			<SCRIPT LANGUAGE="JavaScript">
   356 			<SCRIPT LANGUAGE="JavaScript">
   356 			<!-- Begin
   357 			<!-- Begin
   408 			</th>
   409 			</th>
   409 			<td>
   410 			<td>
   410 			<input type="checkbox" name="aiosp_disable" <?php if ($aiosp_disable) echo "checked=\"1\""; ?>/>
   411 			<input type="checkbox" name="aiosp_disable" <?php if ($aiosp_disable) echo "checked=\"1\""; ?>/>
   411 			</td>
   412 			</td>
   412 			</tr>
   413 			</tr>
       
   414 
       
   415 <?php if ( $aiosp_disable ) { ?>
       
   416                                                 <tr>
       
   417                                                         <th scope="row" style="text-align:right; vertical-align:top;">
       
   418                                                                 <?php _e('Disable Google Analytics:', 'all_in_one_seo_pack')?>
       
   419                                                         </th>
       
   420                                                         <td>
       
   421                                                                 <input type="checkbox" name="aiosp_disable_analytics" <?php if ($aiosp_disable_analytics) echo "checked=\"1\""; ?>/>
       
   422                                                         </td>
       
   423                                                 </tr>
       
   424 <?php } ?>
       
   425 
   413 			</table>
   426 			</table>
   414 		<?php
   427 		<?php
   415 	}
   428 	}
   416 }
   429 }