Este plugin (https://es.wordpress.org/plugins/syntaxhighlighter) se utiliza para insertar código en cualquier entrada de wordpress. La documentación incluida es muy clara.
Código en R
insectos <- c(16,11,20,21,14,7,37,32,15,25,39,41,21,12,14,17,13,17,45,59,48,46,38,47)
colores <- as.factor(c(rep(c("azul", "verde", "blanco", "amarillo"), each =6)))
fm = aov( lm(insectos ~ colores) )
Pedimos un resumen de la tabla del ANOVA
summary(fm)
#> Df Sum Sq Mean Sq F value Pr(>F)
#> colores 3 4218 1406 30.55 1.15e-07 ***
#> Residuals 20 921 46
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Código en PHP
!DOCTYPE HTML
<html>
<head>
<title> Ejemplo<title>
<head>
<body>
<?php echo "¡Hola, soy un script de PHP!"; >
</body>
</html>
Código de MySQL
CREATE TABLE `basedatosmysql` (
`id` smallint(7) unsigned NOT NULL auto_increment,
`nombre` varchar(50) NOT NULL default '',
`categoria` varchar(50) NOT NULL default '',
`descripcion` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 PACK_KEYS=0 AUTO_INCREMENT=8140 ;