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 中 header.php 文件中当前执行页面的元描述。
Wordpress 函数“get_post_meta”对此没有用。它只返回自定义元标记。
谁能帮我吗。
我冒昧地假设您正在动态生成元描述标签。如果是这种情况,这应该可以满足您的需求...
<?php echo get_post_meta($post->ID, 'description', true); ?>
另一方面,如果那不是您正在做的事情……该方法将行不通。