Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用外部数据库在 wordpress 网站上工作,以动态填充具有不同相机规格的单个 wp 页面。所有这些都运行良好,最后一个障碍是:
如何强制 WP 使用我的 url-query 作为页面标题?
我尝试了添加的简单解决方案
<?php echo $_GET['kamera']; ?>
在标题字段中,但并不奇怪,这不是由 wordpress 解析的。
有人有想法吗?
尝试:
function your_custom_wp_title() { global $wp_query; $title = ''; if ( $wp_query->query_vars( 'kamera' ) ) { //or $GET['kamera'] $title = 'kamera'; } return $title; } add_filter( 'wp_title', 'your_custom_wp_title', 10, 3 );