<?php
/**
* Plugin Name: Atrapalo Web Scraping
* Plugin URI: https://israelperez.ninja/
* Description: Ejemplo de Plugin para mostrar contenido scrapeado via Short-Code.
* Version: 0.1
* Text Domain: webscraping-plugin
* Author: Israel Pérez Pérez
* Author URI: https://israelperez.ninja/
*/
function wpse_load_plugin_css() {
$plugin_url = plugin_dir_url( __FILE__ );
wp_enqueue_style( 'style1', $plugin_url . 'hotel.css' );
}
add_action( 'wp_enqueue_scripts', 'wpse_load_plugin_css' );
function webScraping_plugin($atts) {
ob_start();
$datos = shortcode_atts( array(
'nombre' => 'Hotel Inventado de Oviedo',
'descripcion' => 'Descripcion inventada.',
'imagen' => 'https://www.pro-voyages.com/storage/app/uploads/public/5b4/dd8/036/5b4dd80365bad827588706.jpg',
'puntuacion' => '10',
'valoracion' => 'https://www.tripadvisor.es/img/cdsi/img2/ratings/traveler/3.5-14305-5.png',
'enlace' => 'https://www.atrapalo.com/',
), $atts );
?>
// CÓDIGO HTML AQUÍ
<?php
return ob_get_clean();
}
add_shortcode('atrapalo', 'webScraping_plugin');
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter