Chinnery

George Chinnery was a British artist who lived in Asia, particularly Macau, during the 19th century. Known for his detailed portraiture and landscapes, Chinnery captured the unique blend of East and West in his work. His time in Macau allowed him to document the region’s vibrant culture and architecture.  He is listed on pages 42 and 70 of the 1850 Hong Kong Almanack as “Landscape and Miniature Painter” and “Portrait Painter”; his address was Travessa de V. Baptista, Macao.

1 function special_tooltip_shortcode($atts) { // Default attributes $atts = shortcode_atts(array( 'keyword' => 'Test Tooltip', 'id' => '123', 'items' => '', ), $atts); // Escape output $keyword = esc_html($atts['keyword']); $id = (int) $atts['id']; // Clean items: remove empty lines $lines = preg_split('/\r\n|\r|\n/', $atts['items']); $clean_lines = array_filter(array_map('trim', $lines)); // Trim each line, remove empty $items = ''; foreach ($clean_lines as $line) { $items .= esc_html($line) . '
'; } // Fixed base URL $url = "https://www.macaneselibrary.org/macfams/priv/english/"; // Build output $output = "
{$keyword} #{$id}
{$keyword} #{$id} {$items} Details are in the private website: Already logged in?
Register or login?
"; return $output; } add_shortcode('specialtooltip', 'special_tooltip_shortcode');