firoze

iframe for multisite wordpress

Feb 28th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.75 KB | None | 0 0
  1. add_action('wp_dashboard_setup', 'my_stats_dashboard_widgets');
  2. function my_stats_dashboard_widgets() {
  3. global $wp_meta_boxes;
  4. wp_add_dashboard_widget('custom_stats_widget', 'Scorecard Funnel Statistics', 'custom_dashboard_stats');
  5. }
  6. function custom_dashboard_stats() {
  7.    
  8.  
  9.  
  10.             if(is_home() || is_front_page()){
  11.                 global $wp;
  12.                 $current_url = home_url(add_query_arg(array(),$wp->request));
  13.                 ?>
  14. <iframe src="<?php echo $current_url;?>" width="100%" height="600" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
  15.                 <?php
  16.             }
  17.             else{
  18.                 $current_url = get_permalink();
  19.                 ?>
  20. <iframe src="<?php echo $current_url;?>" width="100%" height="600" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
  21.                 <?php
  22.  
  23.             }
  24.  
  25. }
Add Comment
Please, Sign In to add comment