只要你有一个标准page template header 在您的map-template.php
, 您可以使用Custom Post Template plugin (这本质上允许您以处理页面的相同方式在帖子上使用模板)。
Update: 也许你最好使用shortcode.
例如
This is my post content in the editor. And here is a map;
[my-map]
并且在
functions.php
;
function __my_map_shortcode()
{
// output map
}
add_shortcode( \'my-map\', \'__my_map_shortcode\' );