Sau bài chia sẻ code hiển thị tỷ giá ngoại tệ của VCB, hôm nay mình xin chia sẻ tiếp code hiển thị giá vàng SJC. Xài cài này đỡ phải thêm 1 plugin, trong khi nhu cầu đơn giản.
Code hiển thị tỷ giá vàng SJC
functiongetContentBycURL($url){ $curl =curl_init($url);curl_setopt($curl,CURLOPT_URL,$url);curl_setopt($curl,CURLOPT_POST,true);curl_setopt($curl,CURLOPT_RETURNTRANSFER,true); $headers =array("Accept: application/json","Content-Type: application/json","Content-Length: 0", );curl_setopt($curl,CURLOPT_HTTPHEADER,$headers);//for debug only!curl_setopt($curl,CURLOPT_SSL_VERIFYHOST,false);curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false); $resp =curl_exec($curl);curl_close($curl);return $resp;}functiontygiavang_sjc() { $data1 =getContentBycURL('https://www.sjc.com.vn/xml/tygiavang.xml'); $data =newSimpleXMLElement($data1);ob_start(); ?><tableborder="1"><trbgcolor="yellow"><td>Thànhphố</td><td>Loại</td><td>Bánra</td><td>Muavào</td></tr><?phpforeach($data->ratelist->city as $item){?><tr><td<?phpif(count($item->item)>1){?>rowspan="<?php echo count($item->item)?>"<?php }?>><?phpecho(string)$item['name']?></td><?php $first=reset($item->item);next($item);?><td><?phpecho(string)$first['type']?></td><td><?phpecho(string)$first['sell']?></td><td><?phpecho(string)$first['buy']?></td></tr><?phpif(count($item->item)>1){ $isFirst =true;foreach($item->item as $t){if ($isFirst) { $isFirst =false;continue; } ?><tr><td><?phpecho(string)$t['type']?></td><td><?phpecho(string)$t['sell']?></td><td><?phpecho(string)$t['buy']?></td></tr><?php } }?><?php }?></table><?php $tygia_sjc =ob_get_contents();ob_end_clean();return $tygia_sjc; }add_shortcode('tygiavang_sjc','tygiavang_sjc');
Cách sử dụng
- Bạn truy cập vào Giao diện -> Sửa giao diện -> chọn functions.php của theme đang dùng. Dán code vào
- Bước tiếp theo là chèn shortcode [tygiavang_sjc] vào nơi bạn muốn hiển thị
Note: Nếu chèn vèo widget mà không hiển thị, bạn chèn thêm code sau vào functions.php của theme đang dùng.
add_filter('widget_text','do_shortcode');
Kết quả mẫu


Cảm ơn đã ghé thăm!