科技美学

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2022年6月10日

摘要: 1.0 database connection define( 'DB_NAME', 'db_table' ); define( 'DB_USER', 'db_name' ); define( 'DB_PASSWORD', 'db_password' ); define( 'DB_HOST', 'd 阅读全文
posted @ 2022-06-10 16:35 chankuang 阅读(58) 评论(0) 推荐(0) 编辑

摘要: 官方文檔: https://docs.infura.io/infura/tutorials/ethereum/call-a-contract 由於開發時,官方文檔未更新,所以用另外的方法來實現。 1.0 install @ethereumjs/tx npm install @ethereumjs/t 阅读全文
posted @ 2022-06-10 16:23 chankuang 阅读(36) 评论(0) 推荐(0) 编辑

摘要: wordpress meta_query處理小數位時,會出現問題。官方提出的解決方法,是使用DECIMAL(10,3)來做值類型。 array('key' => 'wpsc_price_sell', 'value' => array((float)$priceFrom, (float)$priceT 阅读全文
posted @ 2022-06-10 10:39 chankuang 阅读(17) 评论(0) 推荐(0) 编辑

摘要: 1. wordpress hook in construct() function __construct() { add_filter('post_type_link', [$this, 'custom_nft_permalink'], 1, 3); } 2. rewrite post link 阅读全文
posted @ 2022-06-10 10:23 chankuang 阅读(82) 评论(0) 推荐(0) 编辑