Birds

Chivit Boca Sujo

Chivit Boca Sujo e mas Pastro-Pastro Macaísta by Luis Felipe Baptista, PhD originally published in the UMA News Bulletin UMA News Bulletin, Sep-Oct 1999, pp.12-15 At Professor Armando (Pinky) Silva’s suggestion and encouragement I wrote an essay on common Hong Kong birds that I remembered from my childhood days with the main goal of preserving for […]

Chivit Boca Sujo Read More »

Chivit Pardal BicoChumbo

Chivit, Pardal, Bico-chumbo e Otro pastro-pastro Macaísta by Luis F. Baptista PhD Originally published in the UMA News Bulletin Nov-Dec 1998. One of the most important events of my life was when during my third year in university my friend Chris Wemmer recommended that I read Nobel laureate Konrad Lorenz’s popular book “King Solomon’s Ring”. This

Chivit Pardal BicoChumbo Read More »

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');