在 PhpStorm 中,我正在使用 Apache 速度做这个 php 文件模板:
php模板
<?php
defined( 'ABSPATH' ) || exit;
use function $plugin_name_namespace\Core\get_current_plugin_domain;
printf( '<article class="post-entry-content">' );
if ( has_post_thumbnail() ) {
printf( '<a class="post-thumbnail-link" href="%s">%s</a>',
get_the_permalink(),
get_the_post_thumbnail()
);
}
echo '<div class="post-content">';
printf( '<h4 class="entry-title"><a href="%s" title="%s" rel="bookmark">%s</a></h4>',
get_the_permalink(),
get_the_title(),
get_the_title()
);
printf( '<div class="entry-excerpt">%s</div>' ,get_the_excerpt() );
printf('<a href="%s" class="details-link button" rel="nofollow">%s</a>',
get_the_permalink(),
__( "See More", get_current_plugin_domain() )
);
echo '</div>';
echo '</article>';
?>
我想用 apache velocity 设置$plugin_name_namespace
一个配置文件中的默认值(.ini,.env ... 不管)
或者..
用配置文件中的值动态填充模板。
有没有办法做到这一点 ?